Re-added sources.
This commit is contained in:
parent
0b4a81191a
commit
8cb2788e0d
@ -106,6 +106,7 @@ do
|
|||||||
for i = 1, n do
|
for i = 1, n do
|
||||||
local b = select(i, ...)
|
local b = select(i, ...)
|
||||||
assert(b ~= self, "No recursion please.")
|
assert(b ~= self, "No recursion please.")
|
||||||
|
assert(not Source:is_instance(b))
|
||||||
bits[#bits + 1] = b
|
bits[#bits + 1] = b
|
||||||
if type(b) == 'string' then
|
if type(b) == 'string' then
|
||||||
do
|
do
|
||||||
@ -165,6 +166,7 @@ do
|
|||||||
self.source = Source(self.source, 1, #tostring(self) + 1)
|
self.source = Source(self.source, 1, #tostring(self) + 1)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
return assert(self.source)
|
||||||
end,
|
end,
|
||||||
__base = _base_0,
|
__base = _base_0,
|
||||||
__name = "Code"
|
__name = "Code"
|
||||||
@ -218,7 +220,7 @@ do
|
|||||||
for _index_0 = 1, #vars do
|
for _index_0 = 1, #vars do
|
||||||
local var = vars[_index_0]
|
local var = vars[_index_0]
|
||||||
assert(type(var) == 'userdata' and var.type == "Var")
|
assert(type(var) == 'userdata' and var.type == "Var")
|
||||||
removals[var] = true
|
removals[var.value] = true
|
||||||
end
|
end
|
||||||
local stack = {
|
local stack = {
|
||||||
self
|
self
|
||||||
@ -227,7 +229,7 @@ do
|
|||||||
local lua
|
local lua
|
||||||
lua, stack[#stack] = stack[#stack], nil
|
lua, stack[#stack] = stack[#stack], nil
|
||||||
for i = #lua.free_vars, 1, -1 do
|
for i = #lua.free_vars, 1, -1 do
|
||||||
if removals[lua.free_vars[i]] then
|
if removals[lua.free_vars[i].value] then
|
||||||
remove(lua.free_vars, i)
|
remove(lua.free_vars, i)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -72,6 +72,7 @@ class Code
|
|||||||
@source = Source(filename, tonumber(start), tonumber(stop))
|
@source = Source(filename, tonumber(start), tonumber(stop))
|
||||||
else
|
else
|
||||||
@source = Source(@source, 1, #tostring(self)+1)
|
@source = Source(@source, 1, #tostring(self)+1)
|
||||||
|
assert(@source)
|
||||||
|
|
||||||
sub: (start,stop)=>
|
sub: (start,stop)=>
|
||||||
-- TODO: implement this better
|
-- TODO: implement this better
|
||||||
@ -86,6 +87,7 @@ class Code
|
|||||||
for i=1,n
|
for i=1,n
|
||||||
b = select(i, ...)
|
b = select(i, ...)
|
||||||
assert(b != self, "No recursion please.")
|
assert(b != self, "No recursion please.")
|
||||||
|
assert(not Source\is_instance(b))
|
||||||
bits[#bits+1] = b
|
bits[#bits+1] = b
|
||||||
if type(b) == 'string'
|
if type(b) == 'string'
|
||||||
if spaces = match(b, "\n([ ]*)[^\n]*$")
|
if spaces = match(b, "\n([ ]*)[^\n]*$")
|
||||||
@ -139,13 +141,13 @@ class Lua extends Code
|
|||||||
removals = {}
|
removals = {}
|
||||||
for var in *vars
|
for var in *vars
|
||||||
assert(type(var) == 'userdata' and var.type == "Var")
|
assert(type(var) == 'userdata' and var.type == "Var")
|
||||||
removals[var] = true
|
removals[var.value] = true
|
||||||
|
|
||||||
stack = {self}
|
stack = {self}
|
||||||
while #stack > 0
|
while #stack > 0
|
||||||
lua, stack[#stack] = stack[#stack], nil
|
lua, stack[#stack] = stack[#stack], nil
|
||||||
for i=#lua.free_vars,1,-1
|
for i=#lua.free_vars,1,-1
|
||||||
if removals[lua.free_vars[i]]
|
if removals[lua.free_vars[i].value]
|
||||||
remove lua.free_vars, i
|
remove lua.free_vars, i
|
||||||
for b in *lua.bits
|
for b in *lua.bits
|
||||||
if type(b) != 'string'
|
if type(b) != 'string'
|
||||||
|
@ -188,14 +188,14 @@ immediately
|
|||||||
%body has subtree % where
|
%body has subtree % where
|
||||||
(%.type = "Action") and
|
(%.type = "Action") and
|
||||||
((%'s stub) is "do next %") and
|
((%'s stub) is "do next %") and
|
||||||
%.3 = %var
|
%.value.3.value = %var.value
|
||||||
..: to %lua write (Lua "\n ::continue_\(%var as lua identifier)::;")
|
..: to %lua write (Lua "\n ::continue_\(%var as lua identifier)::;")
|
||||||
to %lua write "\nend --foreach-loop"
|
to %lua write "\nend --foreach-loop"
|
||||||
if
|
if
|
||||||
%body has subtree % where
|
%body has subtree % where
|
||||||
(%.type = "Action") and
|
(%.type = "Action") and
|
||||||
((%'s stub) is "stop %") and
|
((%'s stub) is "stop %") and
|
||||||
%.2 = %var
|
%.value.2.value = %var.value
|
||||||
..
|
..
|
||||||
%lua <-
|
%lua <-
|
||||||
Lua ".."
|
Lua ".."
|
||||||
@ -219,14 +219,14 @@ immediately
|
|||||||
%body has subtree % where
|
%body has subtree % where
|
||||||
(%.type = "Action") and
|
(%.type = "Action") and
|
||||||
((%'s stub) is "do next %") and
|
((%'s stub) is "do next %") and
|
||||||
%.3 = %key
|
%.value.3.value = %key.value
|
||||||
..: to %lua write (Lua "\n ::continue_\(%key as lua identifier)::;")
|
..: to %lua write (Lua "\n ::continue_\(%key as lua identifier)::;")
|
||||||
|
|
||||||
if
|
if
|
||||||
%body has subtree % where
|
%body has subtree % where
|
||||||
(%.type = "Action") and
|
(%.type = "Action") and
|
||||||
((%'s stub) is "do next %") and
|
((%'s stub) is "do next %") and
|
||||||
%.3 = %value
|
%.value.3.value = %value.value
|
||||||
..: to %lua write (Lua "\n ::continue_\(%value as lua identifier)::;")
|
..: to %lua write (Lua "\n ::continue_\(%value as lua identifier)::;")
|
||||||
to %lua write "\nend --foreach-loop"
|
to %lua write "\nend --foreach-loop"
|
||||||
|
|
||||||
@ -235,14 +235,14 @@ immediately
|
|||||||
%body has subtree % where
|
%body has subtree % where
|
||||||
(%.type = "Action") and
|
(%.type = "Action") and
|
||||||
((%'s stub) is "stop %") and
|
((%'s stub) is "stop %") and
|
||||||
%.2 = %key
|
%.value.2.value = %key.value
|
||||||
..: to %stop_labels write "\n::stop_\(%key as lua identifier)::;"
|
..: to %stop_labels write "\n::stop_\(%key as lua identifier)::;"
|
||||||
|
|
||||||
if
|
if
|
||||||
%body has subtree % where
|
%body has subtree % where
|
||||||
(%.type = "Action") and
|
(%.type = "Action") and
|
||||||
((%'s stub) is "stop %") and
|
((%'s stub) is "stop %") and
|
||||||
%.2 = %value
|
%.value.2.value = %value.value
|
||||||
..: to %stop_labels write "\n::stop_\(%value as lua identifier)::;"
|
..: to %stop_labels write "\n::stop_\(%value as lua identifier)::;"
|
||||||
|
|
||||||
if: (length of %stop_labels) > 0
|
if: (length of %stop_labels) > 0
|
||||||
@ -262,14 +262,14 @@ immediately
|
|||||||
%is_first <- (yes)
|
%is_first <- (yes)
|
||||||
%seen_else <- (no)
|
%seen_else <- (no)
|
||||||
%branches <-
|
%branches <-
|
||||||
%body if (%body.type = "Block") else [%body]
|
%body.value if (%body.type = "Block") else [%body]
|
||||||
for %func_call in %branches
|
for %func_call in %branches
|
||||||
assume (%func_call.type is "Action") or barf ".."
|
assume (%func_call.type is "Action") or barf ".."
|
||||||
Invalid format for 'when' statement. Only '*' blocks are allowed.
|
Invalid format for 'when' statement. Only '*' blocks are allowed.
|
||||||
with {..}
|
with {..}
|
||||||
%star: %func_call.1
|
%star: %func_call.value.1
|
||||||
%condition: %func_call.2
|
%condition: %func_call.value.2
|
||||||
%action: %func_call.3
|
%action: %func_call.value.3
|
||||||
..
|
..
|
||||||
assume (%star = "*") or barf ".."
|
assume (%star = "*") or barf ".."
|
||||||
Invalid format for 'when' statement. Lines must begin with '*'
|
Invalid format for 'when' statement. Lines must begin with '*'
|
||||||
@ -310,11 +310,11 @@ immediately
|
|||||||
%is_first <- (yes)
|
%is_first <- (yes)
|
||||||
%seen_else <- (no)
|
%seen_else <- (no)
|
||||||
%branches <-
|
%branches <-
|
||||||
%body if (%body.type = "Block") else [%body]
|
%body.value if (%body.type = "Block") else [%body]
|
||||||
for %func_call in %branches
|
for %func_call in %branches
|
||||||
assume (%func_call.type is "Action") or barf ".."
|
assume (%func_call.type is "Action") or barf ".."
|
||||||
Invalid format for 'when' statement. Only '*' blocks are allowed.
|
Invalid format for 'when' statement. Only '*' blocks are allowed.
|
||||||
with {%star:%func_call.1, %condition:%func_call.2, %action:%func_call.3}
|
with {%star:%func_call.value.1, %condition:%func_call.value.2, %action:%func_call.value.3}
|
||||||
assume (%star = "*") or barf ".."
|
assume (%star = "*") or barf ".."
|
||||||
Invalid format for 'when' statement. Lines must begin with '*'
|
Invalid format for 'when' statement. Lines must begin with '*'
|
||||||
assume %condition or barf ".."
|
assume %condition or barf ".."
|
||||||
|
@ -42,7 +42,7 @@ compile [all of %items, all %items] to
|
|||||||
unless: (%items' "type") is "List"
|
unless: (%items' "type") is "List"
|
||||||
return: Lua value "utils.all(\(%items as lua expr))"
|
return: Lua value "utils.all(\(%items as lua expr))"
|
||||||
%clauses <- []
|
%clauses <- []
|
||||||
for % in %items
|
for % in %items.value
|
||||||
lua> "table.insert(\%clauses, \(% as lua expr));"
|
lua> "table.insert(\%clauses, \(% as lua expr));"
|
||||||
return: Lua value "(\(%clauses joined with " and "))"
|
return: Lua value "(\(%clauses joined with " and "))"
|
||||||
parse [not all of %items, not all %items] as: not (all of %items)
|
parse [not all of %items, not all %items] as: not (all of %items)
|
||||||
@ -50,7 +50,7 @@ compile [any of %items, any %items] to
|
|||||||
unless: (%items' "type") is "List"
|
unless: (%items' "type") is "List"
|
||||||
return: Lua value "utils.any(\(%items as lua expr))"
|
return: Lua value "utils.any(\(%items as lua expr))"
|
||||||
%clauses <- []
|
%clauses <- []
|
||||||
for % in %items
|
for % in %items.value
|
||||||
lua> "table.insert(\%clauses, \(% as lua expr));"
|
lua> "table.insert(\%clauses, \(% as lua expr));"
|
||||||
return: Lua value "(\(%clauses joined with " or "))"
|
return: Lua value "(\(%clauses joined with " or "))"
|
||||||
parse [none of %items, none %items] as: not (any of %items)
|
parse [none of %items, none %items] as: not (any of %items)
|
||||||
@ -58,14 +58,14 @@ compile [sum of %items, sum %items] to
|
|||||||
unless: (%items' "type") is "List"
|
unless: (%items' "type") is "List"
|
||||||
return: Lua value "utils.sum(\(%items as lua expr))"
|
return: Lua value "utils.sum(\(%items as lua expr))"
|
||||||
%clauses <- []
|
%clauses <- []
|
||||||
for % in %items
|
for % in %items.value
|
||||||
lua> "table.insert(\%clauses, \(% as lua expr));"
|
lua> "table.insert(\%clauses, \(% as lua expr));"
|
||||||
return: Lua value "(\(%clauses joined with " + "))"
|
return: Lua value "(\(%clauses joined with " + "))"
|
||||||
compile [product of %items, product %items] to
|
compile [product of %items, product %items] to
|
||||||
unless: (%items' "type") is "List"
|
unless: (%items' "type") is "List"
|
||||||
return: Lua value "utils.product(\(%items as lua expr))"
|
return: Lua value "utils.product(\(%items as lua expr))"
|
||||||
%clauses <- []
|
%clauses <- []
|
||||||
for % in %items
|
for % in %items.value
|
||||||
lua> "table.insert(\%clauses, \(% as lua expr));"
|
lua> "table.insert(\%clauses, \(% as lua expr));"
|
||||||
return: Lua value "(\(%clauses joined with " * "))"
|
return: Lua value "(\(%clauses joined with " * "))"
|
||||||
action [avg of %items, average of %items]
|
action [avg of %items, average of %items]
|
||||||
|
@ -6,9 +6,9 @@
|
|||||||
immediately
|
immediately
|
||||||
lua> ".."
|
lua> ".."
|
||||||
nomsu:define_compile_action("compile %actions to %lua", function(tree, \%actions, \%lua)
|
nomsu:define_compile_action("compile %actions to %lua", function(tree, \%actions, \%lua)
|
||||||
local lua = Lua(nil, "nomsu:define_compile_action(")
|
local lua = Lua(tree.source, "nomsu:define_compile_action(")
|
||||||
local stubs = {}
|
local stubs = {}
|
||||||
for i, action in ipairs(\%actions) do
|
for i, action in ipairs(\%actions.value) do
|
||||||
stubs[i] = action:get_stub(true)
|
stubs[i] = action:get_stub(true)
|
||||||
end
|
end
|
||||||
stubs = repr(stubs)
|
stubs = repr(stubs)
|
||||||
@ -19,7 +19,7 @@ immediately
|
|||||||
end
|
end
|
||||||
lua:append("function(tree")
|
lua:append("function(tree")
|
||||||
local args = {}
|
local args = {}
|
||||||
for i,tok in ipairs(\%actions[1]) do
|
for i,tok in ipairs(\%actions.value[1].value) do
|
||||||
if tok.type == "Var" then args[#args+1] = tok end
|
if tok.type == "Var" then args[#args+1] = tok end
|
||||||
end
|
end
|
||||||
for i, arg in ipairs(args) do
|
for i, arg in ipairs(args) do
|
||||||
@ -36,9 +36,9 @@ immediately
|
|||||||
immediately
|
immediately
|
||||||
compile [action %actions %body] to
|
compile [action %actions %body] to
|
||||||
lua> ".."
|
lua> ".."
|
||||||
local lua = Lua(nil, "nomsu:define_action(")
|
local lua = Lua(tree.source, "nomsu:define_action(")
|
||||||
local stubs = {}
|
local stubs = {}
|
||||||
for i, action in ipairs(\%actions) do
|
for i, action in ipairs(\%actions.value) do
|
||||||
stubs[i] = action:get_stub(true)
|
stubs[i] = action:get_stub(true)
|
||||||
end
|
end
|
||||||
stubs = repr(stubs)
|
stubs = repr(stubs)
|
||||||
@ -49,7 +49,7 @@ immediately
|
|||||||
end
|
end
|
||||||
lua:append("function(")
|
lua:append("function(")
|
||||||
local args = {}
|
local args = {}
|
||||||
for i,tok in ipairs(\%actions[1]) do
|
for i,tok in ipairs(\%actions.value[1].value) do
|
||||||
if tok.type == "Var" then args[#args+1] = tok end
|
if tok.type == "Var" then args[#args+1] = tok end
|
||||||
end
|
end
|
||||||
for i, arg in ipairs(args) do
|
for i, arg in ipairs(args) do
|
||||||
@ -66,9 +66,9 @@ immediately
|
|||||||
immediately
|
immediately
|
||||||
compile [parse %shorthand as %longhand] to
|
compile [parse %shorthand as %longhand] to
|
||||||
lua> ".."
|
lua> ".."
|
||||||
local lua = Lua(nil, "nomsu:define_compile_action(")
|
local lua = Lua(tree.source, "nomsu:define_compile_action(")
|
||||||
local stubs = {}
|
local stubs = {}
|
||||||
for i, action in ipairs(\%shorthand) do
|
for i, action in ipairs(\%shorthand.value) do
|
||||||
stubs[i] = action:get_stub(true)
|
stubs[i] = action:get_stub(true)
|
||||||
end
|
end
|
||||||
stubs = repr(stubs)
|
stubs = repr(stubs)
|
||||||
@ -79,26 +79,26 @@ immediately
|
|||||||
end
|
end
|
||||||
lua:append("function(tree")
|
lua:append("function(tree")
|
||||||
local replacements = {}
|
local replacements = {}
|
||||||
for i,tok in ipairs(\%shorthand[1]) do
|
for i,tok in ipairs(\%shorthand.value[1].value) do
|
||||||
if tok.type == "Var" then
|
if tok.type == "Var" then
|
||||||
local lua_var = tostring(nomsu:tree_to_lua(tok))
|
local lua_var = tostring(nomsu:tree_to_lua(tok))
|
||||||
replacements[tok] = lua_var
|
replacements[tok.value] = lua_var
|
||||||
lua:append(", ", lua_var)
|
lua:append(", ", lua_var)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
local function make_tree(t)
|
local function make_tree(t)
|
||||||
if replacements[t] then
|
if type(t) ~= 'table' and type(t) ~= 'userdata' then
|
||||||
return replacements[t]
|
|
||||||
elseif type(t) ~= 'table' and type(t) ~= 'userdata' then
|
|
||||||
return repr(t)
|
return repr(t)
|
||||||
|
elseif t.type == 'Var' and replacements[t.value] then
|
||||||
|
return replacements[t.value]
|
||||||
elseif t.is_multi then
|
elseif t.is_multi then
|
||||||
local bits = {}
|
local bits = {}
|
||||||
for i, entry in ipairs(t) do
|
for i, entry in ipairs(t.value) do
|
||||||
bits[i] = make_tree(entry)
|
bits[i] = make_tree(entry)
|
||||||
end
|
end
|
||||||
return t.type.."("..table.concat(bits, ", ")..")"
|
return t.type.."(Tuple("..table.concat(bits, ", ").."), "..repr(t.source)..")"
|
||||||
else
|
else
|
||||||
return t.type.."("..make_tree(t.value)..")"
|
return t.type.."("..repr(t.value)..", "..repr(t.source)..")"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
lua:append(")\n local tree = ", make_tree(\%longhand), "\n return nomsu:tree_to_lua(tree)\nend);")
|
lua:append(")\n local tree = ", make_tree(\%longhand), "\n return nomsu:tree_to_lua(tree)\nend);")
|
||||||
@ -169,21 +169,21 @@ immediately
|
|||||||
# Compiler tools
|
# Compiler tools
|
||||||
immediately
|
immediately
|
||||||
compile [run %code] to
|
compile [run %code] to
|
||||||
Lua value "nomsu:run(Nomsu(nil, \(%code as lua expr)))"
|
Lua "nomsu:run(Nomsu(\(%code.source as text), \(%code as lua expr)))"
|
||||||
|
|
||||||
immediately
|
immediately
|
||||||
compile [show lua %block] to
|
compile [show lua %block] to
|
||||||
lua> ".."
|
lua> ".."
|
||||||
local \%lua = nomsu:tree_to_lua(\%block);
|
local \%lua = nomsu:tree_to_lua(\%block);
|
||||||
return Lua(nil, "print(", repr(tostring(\%lua)), ");");
|
return Lua(tree.source, "print(", repr(tostring(\%lua)), ");");
|
||||||
|
|
||||||
immediately
|
immediately
|
||||||
compile [say %message] to
|
compile [say %message] to
|
||||||
lua> ".."
|
lua> ".."
|
||||||
if \%message.type == "Text" then
|
if \%message.type == "Text" then
|
||||||
return Lua(nil, "print(", \(%message as lua expr), ");");
|
return Lua(tree.source, "print(", \(%message as lua expr), ");");
|
||||||
else
|
else
|
||||||
return Lua(nil, "print(stringify(", \(%message as lua expr), "));");
|
return Lua(tree.source, "print(stringify(", \(%message as lua expr), "));");
|
||||||
end
|
end
|
||||||
|
|
||||||
# Return
|
# Return
|
||||||
|
@ -28,18 +28,18 @@ immediately
|
|||||||
local safe = {Text=true, Number=true}
|
local safe = {Text=true, Number=true}
|
||||||
local a_lua, b_lua = \(%a as lua), \(%b as lua)
|
local a_lua, b_lua = \(%a as lua), \(%b as lua)
|
||||||
if safe[\%a.type] or safe[\%b.type] then
|
if safe[\%a.type] or safe[\%b.type] then
|
||||||
return Lua.Value(nil, "(", a_lua, " == ", b_lua, ")")
|
return Lua.Value(tree.source, "(", a_lua, " == ", b_lua, ")")
|
||||||
else
|
else
|
||||||
return Lua.Value(nil, "utils.equivalent(", a_lua, ", ", b_lua, ")")
|
return Lua.Value(tree.source, "utils.equivalent(", a_lua, ", ", b_lua, ")")
|
||||||
end
|
end
|
||||||
compile [%a isn't %b, %a is not %b, %a not= %b, %a != %b] to
|
compile [%a isn't %b, %a is not %b, %a not= %b, %a != %b] to
|
||||||
lua> ".."
|
lua> ".."
|
||||||
local safe = {Text=true, Number=true}
|
local safe = {Text=true, Number=true}
|
||||||
local a_lua, b_lua = \(%a as lua), \(%b as lua)
|
local a_lua, b_lua = \(%a as lua), \(%b as lua)
|
||||||
if safe[\%a.type] or safe[\%b.type] then
|
if safe[\%a.type] or safe[\%b.type] then
|
||||||
return Lua.Value(nil, "(", a_lua, " ~= ", b_lua, ")")
|
return Lua.Value(tree.source, "(", a_lua, " ~= ", b_lua, ")")
|
||||||
else
|
else
|
||||||
return Lua.Value(nil, "(not utils.equivalent(", a_lua, ", ", b_lua, "))")
|
return Lua.Value(tree.source, "(not utils.equivalent(", a_lua, ", ", b_lua, "))")
|
||||||
end
|
end
|
||||||
# For strict identity checking, use (%x's id) is (%y's id)
|
# For strict identity checking, use (%x's id) is (%y's id)
|
||||||
compile [%'s id, id of %] to: Lua value "nomsu.ids[\(% as lua expr)]"
|
compile [%'s id, id of %] to: Lua value "nomsu.ids[\(% as lua expr)]"
|
||||||
@ -52,7 +52,7 @@ immediately
|
|||||||
lua> "local \%value_lua = \(%value as lua);"
|
lua> "local \%value_lua = \(%value as lua);"
|
||||||
assume %value_lua.is_value or barf "Invalid value for assignment: \%value"
|
assume %value_lua.is_value or barf "Invalid value for assignment: \%value"
|
||||||
lua> ".."
|
lua> ".."
|
||||||
local lua = Lua(nil, \%var_lua, ' = ', \%value_lua, ';')
|
local lua = Lua(tree.source, \%var_lua, ' = ', \%value_lua, ';')
|
||||||
if \%var.type == 'Var' then
|
if \%var.type == 'Var' then
|
||||||
lua:add_free_vars({\%var})
|
lua:add_free_vars({\%var})
|
||||||
end
|
end
|
||||||
@ -64,9 +64,9 @@ immediately
|
|||||||
assume ((%assignments' "type") is "Dict") or barf ".."
|
assume ((%assignments' "type") is "Dict") or barf ".."
|
||||||
Expected a Dict for the assignments part of '<- %' statement, not \%assignments
|
Expected a Dict for the assignments part of '<- %' statement, not \%assignments
|
||||||
lua> ".."
|
lua> ".."
|
||||||
local lhs, rhs = Lua(), Lua()
|
local lhs, rhs = Lua(tree.source), Lua(tree.source)
|
||||||
for i, item in ipairs(\%assignments) do
|
for i, item in ipairs(\%assignments.value) do
|
||||||
local \%target, \%value = item[1], item[2]
|
local \%target, \%value = item.value[1], item.value[2]
|
||||||
local target_lua = \(%target as lua)
|
local target_lua = \(%target as lua)
|
||||||
if not target_lua.is_value then error("Invalid target for assignment: "..\(%target as text)) end
|
if not target_lua.is_value then error("Invalid target for assignment: "..\(%target as text)) end
|
||||||
local value_lua = \(%value as lua)
|
local value_lua = \(%value as lua)
|
||||||
@ -81,7 +81,7 @@ immediately
|
|||||||
lhs:append(target_lua)
|
lhs:append(target_lua)
|
||||||
rhs:append(value_lua)
|
rhs:append(value_lua)
|
||||||
end
|
end
|
||||||
return Lua(nil, lhs, " = ", rhs, ";")
|
return Lua(tree.source, lhs, " = ", rhs, ";")
|
||||||
|
|
||||||
immediately
|
immediately
|
||||||
compile [external %var <- %value] to
|
compile [external %var <- %value] to
|
||||||
@ -89,20 +89,20 @@ immediately
|
|||||||
assume %var_lua.is_value or barf "Invalid target for assignment: \%var"
|
assume %var_lua.is_value or barf "Invalid target for assignment: \%var"
|
||||||
%value_lua <- (%value as lua)
|
%value_lua <- (%value as lua)
|
||||||
assume %value_lua.is_value or barf "Invalid value for assignment: \%value"
|
assume %value_lua.is_value or barf "Invalid value for assignment: \%value"
|
||||||
return: Lua "\(%var_lua) = \(%value_lua);"
|
return: Lua "\%var_lua = \%value_lua;"
|
||||||
|
|
||||||
compile [with external %externs %body] to
|
compile [with external %externs %body] to
|
||||||
%body_lua <- (%body as lua statements)
|
%body_lua <- (%body as lua statements)
|
||||||
lua> "\%body_lua:remove_free_vars(\(%externs));"
|
lua> "\%body_lua:remove_free_vars(\%externs.value);"
|
||||||
return %body_lua
|
return %body_lua
|
||||||
|
|
||||||
compile [with %assignments %body] to
|
compile [with %assignments %body] to
|
||||||
%lua <- (%body as lua statements)
|
%lua <- (%body as lua statements)
|
||||||
lua> ".."
|
lua> ".."
|
||||||
local lhs, rhs = Lua(), Lua()
|
local lhs, rhs = Lua(tree.source), Lua(tree.source)
|
||||||
local vars = {}
|
local vars = {}
|
||||||
for i, item in ipairs(\%assignments) do
|
for i, item in ipairs(\%assignments.value) do
|
||||||
local \%target, \%value = item[1], item[2]
|
local \%target, \%value = item.value[1], item.value[2]
|
||||||
if not \%target.type == "Var" then
|
if not \%target.type == "Var" then
|
||||||
error("Invalid target for 'with' assignment: "..tostring(\%target))
|
error("Invalid target for 'with' assignment: "..tostring(\%target))
|
||||||
end
|
end
|
||||||
|
@ -27,7 +27,7 @@ lua> ".."
|
|||||||
};
|
};
|
||||||
for name, e in pairs(escapes) do
|
for name, e in pairs(escapes) do
|
||||||
local lua = "'"..e.."'";
|
local lua = "'"..e.."'";
|
||||||
nomsu:define_compile_action(name, function(tree) return Lua.Value(nil, lua); end);
|
nomsu:define_compile_action(name, function(tree) return Lua.Value(tree.value, lua); end);
|
||||||
end
|
end
|
||||||
local colors = {
|
local colors = {
|
||||||
["reset color"]="\\\\27[0m", bright="\\\\27[1m", dim="\\\\27[2m", underscore="\\\\27[4m",
|
["reset color"]="\\\\27[0m", bright="\\\\27[1m", dim="\\\\27[2m", underscore="\\\\27[4m",
|
||||||
@ -42,9 +42,9 @@ lua> ".."
|
|||||||
for name, c in pairs(colors) do
|
for name, c in pairs(colors) do
|
||||||
local color = "'"..c.."'";
|
local color = "'"..c.."'";
|
||||||
local reset = "'"..colors["reset color"].."'";
|
local reset = "'"..colors["reset color"].."'";
|
||||||
nomsu:define_compile_action(name, function(tree) return Lua.Value(nil, color); end);
|
nomsu:define_compile_action(name, function(tree) return Lua.Value(tree.value, color); end);
|
||||||
nomsu:define_compile_action(name.." %", function(\%)
|
nomsu:define_compile_action(name.." %", function(\%)
|
||||||
return Lua.Value(nil, color, "..", \(% as lua), "..", reset);
|
return Lua.Value(tree.value, color, "..", \(% as lua), "..", reset);
|
||||||
end);
|
end);
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -16,20 +16,20 @@ compile [as %instance %body] to
|
|||||||
end
|
end
|
||||||
|
|
||||||
compile [object %classname %class_body] to
|
compile [object %classname %class_body] to
|
||||||
%class_id <- (=lua "Var(\(%classname as value)):as_lua_id():sub(2,-1)")
|
%class_id <- (=lua "Var.as_lua_id({value=\(%classname as value)}):sub(2,-1)")
|
||||||
if: %class_id is ""
|
if: %class_id is ""
|
||||||
%class_id <- "class"
|
%class_id <- "class"
|
||||||
%methods <-: Lua ""
|
%methods <-: Lua ""
|
||||||
%__index <- %class_id
|
%__index <- %class_id
|
||||||
%__newindex <- "nil"
|
%__newindex <- "nil"
|
||||||
for %line in %class_body
|
for %line in %class_body.value
|
||||||
if: %line.type is "Comment"
|
if: %line.type is "Comment"
|
||||||
do next %line
|
do next %line
|
||||||
if: (%line.type is "Action") and ((%line's stub) is "slots %")
|
if: (%line.type is "Action") and ((%line's stub) is "slots %")
|
||||||
%slot_index_clauses <- []
|
%slot_index_clauses <- []
|
||||||
%slot_newindex_clauses <- []
|
%slot_newindex_clauses <- []
|
||||||
%slots <- %line.2
|
%slots <- %line.value.2
|
||||||
for %slot_index = %slot_var in %slots
|
for %slot_index = %slot_var in %slots.value
|
||||||
to %slot_index_clauses add ".."
|
to %slot_index_clauses add ".."
|
||||||
if key == \(repr %slot_var.value) or key == \(repr (%slot_var as lua expr)) then
|
if key == \(repr %slot_var.value) or key == \(repr (%slot_var as lua expr)) then
|
||||||
return rawget(self, \%slot_index);
|
return rawget(self, \%slot_index);
|
||||||
@ -52,15 +52,15 @@ compile [object %classname %class_body] to
|
|||||||
do next %line
|
do next %line
|
||||||
assume ((%line.type is "Action") and ((%line's stub) is "action % %"))
|
assume ((%line.type is "Action") and ((%line's stub) is "action % %"))
|
||||||
..or barf "Only action definitions are supported inside 'object % %'"
|
..or barf "Only action definitions are supported inside 'object % %'"
|
||||||
%actions <- %line.2
|
%actions <- %line.value.2
|
||||||
%body <- %line.3
|
%body <- %line.value.3
|
||||||
lua> ".."
|
lua> ".."
|
||||||
do
|
do
|
||||||
local stubs = {}
|
local stubs = {}
|
||||||
for i, action in ipairs(\%actions) do
|
for i, action in ipairs(\%actions.value) do
|
||||||
stubs[i] = action:get_stub(true)
|
stubs[i] = action:get_stub(true)
|
||||||
end
|
end
|
||||||
local lua = Lua(nil, \%class_id, "[ ", repr(stubs[1]), "] = function(self")
|
local lua = Lua(\(%line.source), \%class_id, "[ ", repr(stubs[1]), "] = function(self")
|
||||||
local args = {}
|
local args = {}
|
||||||
for i,tok in ipairs(\%actions[1]) do
|
for i,tok in ipairs(\%actions[1]) do
|
||||||
if tok.type == "Var" then args[#args+1] = tok end
|
if tok.type == "Var" then args[#args+1] = tok end
|
||||||
|
250
nomsu.lua
250
nomsu.lua
@ -234,12 +234,19 @@ end
|
|||||||
setmetatable(NOMSU_DEFS, {
|
setmetatable(NOMSU_DEFS, {
|
||||||
__index = function(self, key)
|
__index = function(self, key)
|
||||||
local make_node
|
local make_node
|
||||||
make_node = function(src, ...)
|
make_node = function(start, ...)
|
||||||
local tree = Types[key](...)
|
local args = {
|
||||||
insert(lpeg.userdata.depth_first_sources, {
|
...
|
||||||
src,
|
}
|
||||||
tree
|
local stop = args[#args]
|
||||||
})
|
local source = lpeg.userdata.source:sub(start, stop)
|
||||||
|
args[#args] = nil
|
||||||
|
local tree
|
||||||
|
if Types[key].is_multi then
|
||||||
|
tree = Types[key](Tuple(unpack(args)), source)
|
||||||
|
else
|
||||||
|
tree = Types[key](args[1], source)
|
||||||
|
end
|
||||||
return tree
|
return tree
|
||||||
end
|
end
|
||||||
self[key] = make_node
|
self[key] = make_node
|
||||||
@ -253,7 +260,7 @@ do
|
|||||||
anon_def <- ({ident} (" "*) ":"
|
anon_def <- ({ident} (" "*) ":"
|
||||||
{((%nl " "+ [^%nl]*)+) / ([^%nl]*)}) -> "%1 <- %2"
|
{((%nl " "+ [^%nl]*)+) / ([^%nl]*)}) -> "%1 <- %2"
|
||||||
captured_def <- ({ident} (" "*) "(" {ident} ")" (" "*) ":"
|
captured_def <- ({ident} (" "*) "(" {ident} ")" (" "*) ":"
|
||||||
{((%nl " "+ [^%nl]*)+) / ([^%nl]*)}) -> "%1 <- (({} %3) -> %2)"
|
{((%nl " "+ [^%nl]*)+) / ([^%nl]*)}) -> "%1 <- (({} %3 {}) -> %2)"
|
||||||
ident <- [a-zA-Z_][a-zA-Z0-9_]*
|
ident <- [a-zA-Z_][a-zA-Z0-9_]*
|
||||||
comment <- "--" [^%nl]*
|
comment <- "--" [^%nl]*
|
||||||
]])
|
]])
|
||||||
@ -298,7 +305,9 @@ do
|
|||||||
local _len_0 = 1
|
local _len_0 = 1
|
||||||
for _index_1 = 1, #stub_args do
|
for _index_1 = 1, #stub_args do
|
||||||
local a = stub_args[_index_1]
|
local a = stub_args[_index_1]
|
||||||
_accum_0[_len_0] = fn_arg_positions[Types.Var(a):as_lua_id()]
|
_accum_0[_len_0] = fn_arg_positions[Types.Var.as_lua_id({
|
||||||
|
value = a
|
||||||
|
})]
|
||||||
_len_0 = _len_0 + 1
|
_len_0 = _len_0 + 1
|
||||||
end
|
end
|
||||||
arg_orders[stub] = _accum_0
|
arg_orders[stub] = _accum_0
|
||||||
@ -322,7 +331,7 @@ do
|
|||||||
""
|
""
|
||||||
},
|
},
|
||||||
errors = { },
|
errors = { },
|
||||||
depth_first_sources = { }
|
source = nomsu_code.source
|
||||||
}
|
}
|
||||||
local old_userdata
|
local old_userdata
|
||||||
old_userdata, lpeg.userdata = lpeg.userdata, userdata
|
old_userdata, lpeg.userdata = lpeg.userdata, userdata
|
||||||
@ -345,25 +354,7 @@ do
|
|||||||
end
|
end
|
||||||
error(concat(errors, "\n\n"), 0)
|
error(concat(errors, "\n\n"), 0)
|
||||||
end
|
end
|
||||||
local src_map = { }
|
return tree
|
||||||
local src_i = 1
|
|
||||||
local walk_tree
|
|
||||||
walk_tree = function(tree, path)
|
|
||||||
if tree.is_multi then
|
|
||||||
for i, v in ipairs(tree) do
|
|
||||||
if Types.is_node(v) then
|
|
||||||
walk_tree(v, Tuple(i, path))
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
local src, t2 = unpack(userdata.depth_first_sources[src_i])
|
|
||||||
src_i = src_i + 1
|
|
||||||
assert(t2 == tree)
|
|
||||||
src_map[path] = src
|
|
||||||
end
|
|
||||||
walk_tree(tree, Tuple())
|
|
||||||
assert(src_i == #userdata.depth_first_sources + 1)
|
|
||||||
return tree, src_map
|
|
||||||
end,
|
end,
|
||||||
run = function(self, nomsu_code, compile_fn)
|
run = function(self, nomsu_code, compile_fn)
|
||||||
if compile_fn == nil then
|
if compile_fn == nil then
|
||||||
@ -465,10 +456,7 @@ do
|
|||||||
end
|
end
|
||||||
return run_lua_fn()
|
return run_lua_fn()
|
||||||
end,
|
end,
|
||||||
tree_to_lua = function(self, tree, path)
|
tree_to_lua = function(self, tree)
|
||||||
if path == nil then
|
|
||||||
path = Tuple()
|
|
||||||
end
|
|
||||||
local _exp_0 = tree.type
|
local _exp_0 = tree.type
|
||||||
if "Action" == _exp_0 then
|
if "Action" == _exp_0 then
|
||||||
local stub = tree:get_stub()
|
local stub = tree:get_stub()
|
||||||
@ -478,8 +466,9 @@ do
|
|||||||
do
|
do
|
||||||
local _accum_0 = { }
|
local _accum_0 = { }
|
||||||
local _len_0 = 1
|
local _len_0 = 1
|
||||||
for _index_0 = 1, #tree do
|
local _list_0 = tree.value
|
||||||
local arg = tree[_index_0]
|
for _index_0 = 1, #_list_0 do
|
||||||
|
local arg = _list_0[_index_0]
|
||||||
if type(arg) ~= "string" then
|
if type(arg) ~= "string" then
|
||||||
_accum_0[_len_0] = arg
|
_accum_0[_len_0] = arg
|
||||||
_len_0 = _len_0 + 1
|
_len_0 = _len_0 + 1
|
||||||
@ -505,13 +494,13 @@ do
|
|||||||
return ret
|
return ret
|
||||||
end
|
end
|
||||||
local action = rawget(self.environment.ACTIONS, stub)
|
local action = rawget(self.environment.ACTIONS, stub)
|
||||||
local lua = Lua.Value()
|
local lua = Lua.Value(tree.source)
|
||||||
if not action and math_expression:match(stub) then
|
if not action and math_expression:match(stub) then
|
||||||
for i, tok in ipairs(tree) do
|
for i, tok in ipairs(tree.value) do
|
||||||
if type(tok) == 'string' then
|
if type(tok) == 'string' then
|
||||||
lua:append(tok)
|
lua:append(tok)
|
||||||
else
|
else
|
||||||
local tok_lua = self:tree_to_lua(tok, Tuple(i, path))
|
local tok_lua = self:tree_to_lua(tok)
|
||||||
if not (tok_lua.is_value) then
|
if not (tok_lua.is_value) then
|
||||||
error("non-expression value inside math expression: " .. tostring(colored.yellow(repr(tok))))
|
error("non-expression value inside math expression: " .. tostring(colored.yellow(repr(tok))))
|
||||||
end
|
end
|
||||||
@ -520,21 +509,21 @@ do
|
|||||||
end
|
end
|
||||||
lua:append(tok_lua)
|
lua:append(tok_lua)
|
||||||
end
|
end
|
||||||
if i < #tree then
|
if i < #tree.value then
|
||||||
lua:append(" ")
|
lua:append(" ")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
return lua
|
return lua
|
||||||
end
|
end
|
||||||
local args = { }
|
local args = { }
|
||||||
for i, tok in ipairs(tree) do
|
for i, tok in ipairs(tree.value) do
|
||||||
local _continue_0 = false
|
local _continue_0 = false
|
||||||
repeat
|
repeat
|
||||||
if type(tok) == "string" then
|
if type(tok) == "string" then
|
||||||
_continue_0 = true
|
_continue_0 = true
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
local arg_lua = self:tree_to_lua(tok, Tuple(i, path))
|
local arg_lua = self:tree_to_lua(tok)
|
||||||
if not (arg_lua.is_value) then
|
if not (arg_lua.is_value) then
|
||||||
error("Cannot use:\n" .. tostring(colored.yellow(repr(tok))) .. "\nas an argument to " .. tostring(stub) .. ", since it's not an expression, it produces: " .. tostring(repr(arg_lua)), 0)
|
error("Cannot use:\n" .. tostring(colored.yellow(repr(tok))) .. "\nas an argument to " .. tostring(stub) .. ", since it's not an expression, it produces: " .. tostring(repr(arg_lua)), 0)
|
||||||
end
|
end
|
||||||
@ -578,23 +567,24 @@ do
|
|||||||
do
|
do
|
||||||
local _accum_0 = { }
|
local _accum_0 = { }
|
||||||
local _len_0 = 1
|
local _len_0 = 1
|
||||||
for _index_0 = 1, #t do
|
local _list_0 = t.value
|
||||||
local bit = t[_index_0]
|
for _index_0 = 1, #_list_0 do
|
||||||
|
local bit = _list_0[_index_0]
|
||||||
_accum_0[_len_0] = make_tree(bit)
|
_accum_0[_len_0] = make_tree(bit)
|
||||||
_len_0 = _len_0 + 1
|
_len_0 = _len_0 + 1
|
||||||
end
|
end
|
||||||
bits = _accum_0
|
bits = _accum_0
|
||||||
end
|
end
|
||||||
return t.type .. "(" .. table.concat(bits, ", ") .. ")"
|
return t.type .. "(Tuple(" .. table.concat(bits, ", ") .. "), " .. repr(t.source) .. ")"
|
||||||
else
|
else
|
||||||
return t.type .. "(" .. make_tree(t[1]) .. ")"
|
return t.type .. "(" .. repr(t.value) .. ", " .. repr(t.source) .. ")"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
return Lua.Value(nil, make_tree(tree[1]))
|
return Lua.Value(tree.source, make_tree(tree.value[1]))
|
||||||
elseif "Block" == _exp_0 then
|
elseif "Block" == _exp_0 then
|
||||||
local lua = Lua()
|
local lua = Lua(tree.source)
|
||||||
for i, line in ipairs(tree) do
|
for i, line in ipairs(tree.value) do
|
||||||
local line_lua = self:tree_to_lua(line, Tuple(i, path))
|
local line_lua = self:tree_to_lua(line)
|
||||||
if i > 1 then
|
if i > 1 then
|
||||||
lua:append("\n")
|
lua:append("\n")
|
||||||
end
|
end
|
||||||
@ -602,9 +592,9 @@ do
|
|||||||
end
|
end
|
||||||
return lua
|
return lua
|
||||||
elseif "Text" == _exp_0 then
|
elseif "Text" == _exp_0 then
|
||||||
local lua = Lua.Value()
|
local lua = Lua.Value(tree.source)
|
||||||
local string_buffer = ""
|
local string_buffer = ""
|
||||||
for i, bit in ipairs(tree) do
|
for i, bit in ipairs(tree.value) do
|
||||||
local _continue_0 = false
|
local _continue_0 = false
|
||||||
repeat
|
repeat
|
||||||
if type(bit) == "string" then
|
if type(bit) == "string" then
|
||||||
@ -619,7 +609,7 @@ do
|
|||||||
lua:append(repr(string_buffer))
|
lua:append(repr(string_buffer))
|
||||||
string_buffer = ""
|
string_buffer = ""
|
||||||
end
|
end
|
||||||
local bit_lua = self:tree_to_lua(bit, Tuple(i, path))
|
local bit_lua = self:tree_to_lua(bit)
|
||||||
if not (bit_lua.is_value) then
|
if not (bit_lua.is_value) then
|
||||||
error("Cannot use " .. tostring(colored.yellow(repr(bit))) .. " as a string interpolation value, since it's not an expression.", 0)
|
error("Cannot use " .. tostring(colored.yellow(repr(bit))) .. " as a string interpolation value, since it's not an expression.", 0)
|
||||||
end
|
end
|
||||||
@ -627,7 +617,7 @@ do
|
|||||||
lua:append("..")
|
lua:append("..")
|
||||||
end
|
end
|
||||||
if bit.type ~= "Text" then
|
if bit.type ~= "Text" then
|
||||||
bit_lua = Lua.Value(nil, "stringify(", bit_lua, ")")
|
bit_lua = Lua.Value(bit.source, "stringify(", bit_lua, ")")
|
||||||
end
|
end
|
||||||
lua:append(bit_lua)
|
lua:append(bit_lua)
|
||||||
_continue_0 = true
|
_continue_0 = true
|
||||||
@ -647,10 +637,10 @@ do
|
|||||||
end
|
end
|
||||||
return lua
|
return lua
|
||||||
elseif "List" == _exp_0 then
|
elseif "List" == _exp_0 then
|
||||||
local lua = Lua.Value(nil, "{")
|
local lua = Lua.Value(tree.source, "{")
|
||||||
local line_length = 0
|
local line_length = 0
|
||||||
for i, item in ipairs(tree) do
|
for i, item in ipairs(tree.value) do
|
||||||
local item_lua = self:tree_to_lua(item, Tuple(i, path))
|
local item_lua = self:tree_to_lua(item)
|
||||||
if not (item_lua.is_value) then
|
if not (item_lua.is_value) then
|
||||||
error("Cannot use " .. tostring(colored.yellow(repr(item))) .. " as a list item, since it's not an expression.", 0)
|
error("Cannot use " .. tostring(colored.yellow(repr(item))) .. " as a list item, since it's not an expression.", 0)
|
||||||
end
|
end
|
||||||
@ -662,7 +652,7 @@ do
|
|||||||
else
|
else
|
||||||
line_length = line_length + #last_line
|
line_length = line_length + #last_line
|
||||||
end
|
end
|
||||||
if i < #tree then
|
if i < #tree.value then
|
||||||
if line_length >= MAX_LINE then
|
if line_length >= MAX_LINE then
|
||||||
lua:append(",\n ")
|
lua:append(",\n ")
|
||||||
line_length = 0
|
line_length = 0
|
||||||
@ -675,10 +665,10 @@ do
|
|||||||
lua:append("}")
|
lua:append("}")
|
||||||
return lua
|
return lua
|
||||||
elseif "Dict" == _exp_0 then
|
elseif "Dict" == _exp_0 then
|
||||||
local lua = Lua.Value(nil, "{")
|
local lua = Lua.Value(tree.source, "{")
|
||||||
local line_length = 0
|
local line_length = 0
|
||||||
for i, entry in ipairs(tree) do
|
for i, entry in ipairs(tree.value) do
|
||||||
local entry_lua = self:tree_to_lua(entry, Tuple(i, path))
|
local entry_lua = self:tree_to_lua(entry)
|
||||||
lua:append(entry_lua)
|
lua:append(entry_lua)
|
||||||
local entry_lua_str = tostring(entry_lua)
|
local entry_lua_str = tostring(entry_lua)
|
||||||
local last_line = entry_lua_str:match("\n([^\n]*)$")
|
local last_line = entry_lua_str:match("\n([^\n]*)$")
|
||||||
@ -687,7 +677,7 @@ do
|
|||||||
else
|
else
|
||||||
line_length = line_length + #entry_lua_str
|
line_length = line_length + #entry_lua_str
|
||||||
end
|
end
|
||||||
if i < #tree then
|
if i < #tree.value then
|
||||||
if line_length >= MAX_LINE then
|
if line_length >= MAX_LINE then
|
||||||
lua:append(",\n ")
|
lua:append(",\n ")
|
||||||
line_length = 0
|
line_length = 0
|
||||||
@ -700,35 +690,35 @@ do
|
|||||||
lua:append("}")
|
lua:append("}")
|
||||||
return lua
|
return lua
|
||||||
elseif "DictEntry" == _exp_0 then
|
elseif "DictEntry" == _exp_0 then
|
||||||
local key, value = tree[1], tree[2]
|
local key, value = tree.value[1], tree.value[2]
|
||||||
local key_lua = self:tree_to_lua(key, Tuple(1, path))
|
local key_lua = self:tree_to_lua(key)
|
||||||
if not (key_lua.is_value) then
|
if not (key_lua.is_value) then
|
||||||
error("Cannot use " .. tostring(colored.yellow(repr(key))) .. " as a dict key, since it's not an expression.", 0)
|
error("Cannot use " .. tostring(colored.yellow(repr(key))) .. " as a dict key, since it's not an expression.", 0)
|
||||||
end
|
end
|
||||||
local value_lua = value and self:tree_to_lua(value, Tuple(2, path)) or Lua.Value(nil, "true")
|
local value_lua = value and self:tree_to_lua(value) or Lua.Value(key.source, "true")
|
||||||
if not (value_lua.is_value) then
|
if not (value_lua.is_value) then
|
||||||
error("Cannot use " .. tostring(colored.yellow(repr(value))) .. " as a dict value, since it's not an expression.", 0)
|
error("Cannot use " .. tostring(colored.yellow(repr(value))) .. " as a dict value, since it's not an expression.", 0)
|
||||||
end
|
end
|
||||||
local key_str = tostring(key_lua):match([=[["']([a-zA-Z_][a-zA-Z0-9_]*)['"]]=])
|
local key_str = tostring(key_lua):match([=[["']([a-zA-Z_][a-zA-Z0-9_]*)['"]]=])
|
||||||
if key_str then
|
if key_str then
|
||||||
return Lua(nil, key_str, "=", value_lua)
|
return Lua(tree.source, key_str, "=", value_lua)
|
||||||
elseif tostring(key_lua):sub(1, 1) == "[" then
|
elseif tostring(key_lua):sub(1, 1) == "[" then
|
||||||
return Lua(nil, "[ ", key_lua, "]=", value_lua)
|
return Lua(tree.source, "[ ", key_lua, "]=", value_lua)
|
||||||
else
|
else
|
||||||
return Lua(nil, "[", key_lua, "]=", value_lua)
|
return Lua(tree.source, "[", key_lua, "]=", value_lua)
|
||||||
end
|
end
|
||||||
elseif "IndexChain" == _exp_0 then
|
elseif "IndexChain" == _exp_0 then
|
||||||
local lua = self:tree_to_lua(tree[1], Tuple(1, path))
|
local lua = self:tree_to_lua(tree.value[1])
|
||||||
if not (lua.is_value) then
|
if not (lua.is_value) then
|
||||||
error("Cannot index " .. tostring(colored.yellow(repr(tree[1]))) .. ", since it's not an expression.", 0)
|
error("Cannot index " .. tostring(colored.yellow(repr(tree.value[1]))) .. ", since it's not an expression.", 0)
|
||||||
end
|
end
|
||||||
local first_char = tostring(lua):sub(1, 1)
|
local first_char = tostring(lua):sub(1, 1)
|
||||||
if first_char == "{" or first_char == '"' or first_char == "[" then
|
if first_char == "{" or first_char == '"' or first_char == "[" then
|
||||||
lua:parenthesize()
|
lua:parenthesize()
|
||||||
end
|
end
|
||||||
for i = 2, #tree do
|
for i = 2, #tree.value do
|
||||||
local key = tree[i]
|
local key = tree.value[i]
|
||||||
local key_lua = self:tree_to_lua(key, Tuple(i, path))
|
local key_lua = self:tree_to_lua(key)
|
||||||
if not (key_lua.is_value) then
|
if not (key_lua.is_value) then
|
||||||
error("Cannot use " .. tostring(colored.yellow(repr(key))) .. " as an index, since it's not an expression.", 0)
|
error("Cannot use " .. tostring(colored.yellow(repr(key))) .. " as an index, since it's not an expression.", 0)
|
||||||
end
|
end
|
||||||
@ -746,11 +736,9 @@ do
|
|||||||
end
|
end
|
||||||
return lua
|
return lua
|
||||||
elseif "Number" == _exp_0 then
|
elseif "Number" == _exp_0 then
|
||||||
return Lua.Value(nil, tostring(tree.value))
|
return Lua.Value(tree.source, tostring(tree.value))
|
||||||
elseif "Var" == _exp_0 then
|
elseif "Var" == _exp_0 then
|
||||||
return Lua.Value(nil, tree:as_lua_id())
|
return Lua.Value(tree.source, tree:as_lua_id())
|
||||||
elseif "Comment" == _exp_0 then
|
|
||||||
return Lua(nil, "--" .. tree.value:gsub("\n", "\n--") .. "\n")
|
|
||||||
else
|
else
|
||||||
return error("Unknown type: " .. tostring(tree.type))
|
return error("Unknown type: " .. tostring(tree.type))
|
||||||
end
|
end
|
||||||
@ -765,8 +753,8 @@ do
|
|||||||
local _exp_0 = tree.type
|
local _exp_0 = tree.type
|
||||||
if "Action" == _exp_0 then
|
if "Action" == _exp_0 then
|
||||||
if inline then
|
if inline then
|
||||||
local nomsu = Nomsu()
|
local nomsu = Nomsu(tree.source)
|
||||||
for i, bit in ipairs(tree) do
|
for i, bit in ipairs(tree.value) do
|
||||||
if type(bit) == "string" then
|
if type(bit) == "string" then
|
||||||
if i > 1 then
|
if i > 1 then
|
||||||
nomsu:append(" ")
|
nomsu:append(" ")
|
||||||
@ -788,10 +776,10 @@ do
|
|||||||
end
|
end
|
||||||
return nomsu
|
return nomsu
|
||||||
else
|
else
|
||||||
local nomsu = Nomsu()
|
local nomsu = Nomsu(tree.source)
|
||||||
local next_space = ""
|
local next_space = ""
|
||||||
local last_colon = nil
|
local last_colon = nil
|
||||||
for i, bit in ipairs(tree) do
|
for i, bit in ipairs(tree.value) do
|
||||||
if type(bit) == "string" then
|
if type(bit) == "string" then
|
||||||
nomsu:append(next_space, bit)
|
nomsu:append(next_space, bit)
|
||||||
next_space = " "
|
next_space = " "
|
||||||
@ -825,9 +813,9 @@ do
|
|||||||
end
|
end
|
||||||
if bit.type ~= "List" and bit.type ~= "Dict" and bit.type ~= "Text" then
|
if bit.type ~= "List" and bit.type ~= "Dict" and bit.type ~= "Text" then
|
||||||
if i == 1 then
|
if i == 1 then
|
||||||
arg_nomsu = Nomsu(nil, "(..)\n ", arg_nomsu)
|
arg_nomsu = Nomsu(bit.source, "(..)\n ", arg_nomsu)
|
||||||
else
|
else
|
||||||
arg_nomsu = Nomsu(nil, "\n ", arg_nomsu)
|
arg_nomsu = Nomsu(bit.source, "\n ", arg_nomsu)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
if last_colon == i - 1 and (bit.type == "Action" or bit.type == "Block") then
|
if last_colon == i - 1 and (bit.type == "Action" or bit.type == "Block") then
|
||||||
@ -846,14 +834,14 @@ do
|
|||||||
elseif "EscapedNomsu" == _exp_0 then
|
elseif "EscapedNomsu" == _exp_0 then
|
||||||
local nomsu = self:tree_to_nomsu(tree.value, true)
|
local nomsu = self:tree_to_nomsu(tree.value, true)
|
||||||
if nomsu == nil and not inline then
|
if nomsu == nil and not inline then
|
||||||
nomsu = self:tree_to_nomsu(tree[1])
|
nomsu = self:tree_to_nomsu(tree.value[1])
|
||||||
return nomsu and Nomsu(nil, "\\:\n ", nomsu)
|
return nomsu and Nomsu(tree.source, "\\:\n ", nomsu)
|
||||||
end
|
end
|
||||||
return nomsu and Nomsu(nil, "\\(", nomsu, ")")
|
return nomsu and Nomsu(tree.source, "\\(", nomsu, ")")
|
||||||
elseif "Block" == _exp_0 then
|
elseif "Block" == _exp_0 then
|
||||||
if inline then
|
if inline then
|
||||||
local nomsu = Nomsu()
|
local nomsu = Nomsu(tree.source)
|
||||||
for i, line in ipairs(self) do
|
for i, line in ipairs(tree.value) do
|
||||||
if i > 1 then
|
if i > 1 then
|
||||||
nomsu:append("; ")
|
nomsu:append("; ")
|
||||||
end
|
end
|
||||||
@ -865,7 +853,7 @@ do
|
|||||||
end
|
end
|
||||||
return nomsu
|
return nomsu
|
||||||
end
|
end
|
||||||
local nomsu = Nomsu()
|
local nomsu = Nomsu(tree.source)
|
||||||
for i, line in ipairs(self) do
|
for i, line in ipairs(self) do
|
||||||
line = assert(self:tree_to_nomsu(line, nil, true), "Could not convert line to nomsu")
|
line = assert(self:tree_to_nomsu(line, nil, true), "Could not convert line to nomsu")
|
||||||
nomsu:append(line)
|
nomsu:append(line)
|
||||||
@ -879,9 +867,10 @@ do
|
|||||||
return nomsu
|
return nomsu
|
||||||
elseif "Text" == _exp_0 then
|
elseif "Text" == _exp_0 then
|
||||||
if inline then
|
if inline then
|
||||||
local nomsu = Nomsu(nil, '"')
|
local nomsu = Nomsu(tree.source, '"')
|
||||||
for _index_0 = 1, #tree do
|
local _list_0 = tree.value
|
||||||
local bit = tree[_index_0]
|
for _index_0 = 1, #_list_0 do
|
||||||
|
local bit = _list_0[_index_0]
|
||||||
if type(bit) == 'string' then
|
if type(bit) == 'string' then
|
||||||
nomsu:append((bit:gsub("\\", "\\\\"):gsub("\n", "\\n")))
|
nomsu:append((bit:gsub("\\", "\\\\"):gsub("\n", "\\n")))
|
||||||
else
|
else
|
||||||
@ -903,7 +892,7 @@ do
|
|||||||
if inline_version and #inline_version <= MAX_LINE then
|
if inline_version and #inline_version <= MAX_LINE then
|
||||||
return inline_version
|
return inline_version
|
||||||
end
|
end
|
||||||
local nomsu = Nomsu(nil, '".."\n ')
|
local nomsu = Nomsu(tree.source, '".."\n ')
|
||||||
for i, bit in ipairs(self) do
|
for i, bit in ipairs(self) do
|
||||||
if type(bit) == 'string' then
|
if type(bit) == 'string' then
|
||||||
nomsu:append((bit:gsub("\\", "\\\\"):gsub("\n", "\n ")))
|
nomsu:append((bit:gsub("\\", "\\\\"):gsub("\n", "\n ")))
|
||||||
@ -930,8 +919,8 @@ do
|
|||||||
end
|
end
|
||||||
elseif "List" == _exp_0 then
|
elseif "List" == _exp_0 then
|
||||||
if inline then
|
if inline then
|
||||||
local nomsu = Nomsu(nil, "[")
|
local nomsu = Nomsu(tree.source, "[")
|
||||||
for i, item in ipairs(tree) do
|
for i, item in ipairs(tree.value) do
|
||||||
local item_nomsu = self:tree_to_nomsu(item, true)
|
local item_nomsu = self:tree_to_nomsu(item, true)
|
||||||
if not (item_nomsu) then
|
if not (item_nomsu) then
|
||||||
return nil
|
return nil
|
||||||
@ -948,10 +937,11 @@ do
|
|||||||
if inline_version and #inline_version <= MAX_LINE then
|
if inline_version and #inline_version <= MAX_LINE then
|
||||||
return inline_version
|
return inline_version
|
||||||
end
|
end
|
||||||
local nomsu = Nomsu(nil, "[..]")
|
local nomsu = Nomsu(tree.source, "[..]")
|
||||||
local line = Nomsu(nil, "\n ")
|
local line = Nomsu(tree.source, "\n ")
|
||||||
for _index_0 = 1, #tree do
|
local _list_0 = tree.value
|
||||||
local item = tree[_index_0]
|
for _index_0 = 1, #_list_0 do
|
||||||
|
local item = _list_0[_index_0]
|
||||||
local item_nomsu = self:tree_to_nomsu(item, true)
|
local item_nomsu = self:tree_to_nomsu(item, true)
|
||||||
if item_nomsu and #line + #", " + #item_nomsu <= MAX_LINE then
|
if item_nomsu and #line + #", " + #item_nomsu <= MAX_LINE then
|
||||||
if #line.bits > 1 then
|
if #line.bits > 1 then
|
||||||
@ -967,7 +957,7 @@ do
|
|||||||
end
|
end
|
||||||
if #line.bits > 1 then
|
if #line.bits > 1 then
|
||||||
nomsu:append(line)
|
nomsu:append(line)
|
||||||
line = Nomsu(nil, "\n ")
|
line = Nomsu(line.source, "\n ")
|
||||||
end
|
end
|
||||||
line:append(item_nomsu)
|
line:append(item_nomsu)
|
||||||
end
|
end
|
||||||
@ -979,8 +969,8 @@ do
|
|||||||
end
|
end
|
||||||
elseif "Dict" == _exp_0 then
|
elseif "Dict" == _exp_0 then
|
||||||
if inline then
|
if inline then
|
||||||
local nomsu = Nomsu(nil, "{")
|
local nomsu = Nomsu(tree.source, "{")
|
||||||
for i, entry in ipairs(tree) do
|
for i, entry in ipairs(tree.value) do
|
||||||
local entry_nomsu = self:tree_to_nomsu(entry, true)
|
local entry_nomsu = self:tree_to_nomsu(entry, true)
|
||||||
if not (entry_nomsu) then
|
if not (entry_nomsu) then
|
||||||
return nil
|
return nil
|
||||||
@ -997,10 +987,11 @@ do
|
|||||||
if inline_version then
|
if inline_version then
|
||||||
return inline_version
|
return inline_version
|
||||||
end
|
end
|
||||||
local nomsu = Nomsu(nil, "{..}")
|
local nomsu = Nomsu(tree.source, "{..}")
|
||||||
local line = Nomsu(nil, "\n ")
|
local line = Nomsu(tree.source, "\n ")
|
||||||
for _index_0 = 1, #tree do
|
local _list_0 = tree.value
|
||||||
local entry = tree[_index_0]
|
for _index_0 = 1, #_list_0 do
|
||||||
|
local entry = _list_0[_index_0]
|
||||||
local entry_nomsu = self:tree_to_nomsu(entry)
|
local entry_nomsu = self:tree_to_nomsu(entry)
|
||||||
if not (entry_nomsu) then
|
if not (entry_nomsu) then
|
||||||
return nil
|
return nil
|
||||||
@ -1013,7 +1004,7 @@ do
|
|||||||
else
|
else
|
||||||
if #line.bits > 1 then
|
if #line.bits > 1 then
|
||||||
nomsu:append(line)
|
nomsu:append(line)
|
||||||
line = Nomsu(nil, "\n ")
|
line = Nomsu(line.source, "\n ")
|
||||||
end
|
end
|
||||||
line:append(entry_nomsu)
|
line:append(entry_nomsu)
|
||||||
end
|
end
|
||||||
@ -1024,7 +1015,7 @@ do
|
|||||||
return nomsu
|
return nomsu
|
||||||
end
|
end
|
||||||
elseif "DictEntry" == _exp_0 then
|
elseif "DictEntry" == _exp_0 then
|
||||||
local key, value = tree[1], tree[2]
|
local key, value = tree.value[1], tree.value[2]
|
||||||
local key_nomsu = self:tree_to_nomsu(key, true)
|
local key_nomsu = self:tree_to_nomsu(key, true)
|
||||||
if not (key_nomsu) then
|
if not (key_nomsu) then
|
||||||
return nil
|
return nil
|
||||||
@ -1036,7 +1027,7 @@ do
|
|||||||
if value then
|
if value then
|
||||||
value_nomsu = self:tree_to_nomsu(value, true)
|
value_nomsu = self:tree_to_nomsu(value, true)
|
||||||
else
|
else
|
||||||
value_nomsu = Nomsu(nil, "")
|
value_nomsu = Nomsu(tree.source, "")
|
||||||
end
|
end
|
||||||
if inline and not value_nomsu then
|
if inline and not value_nomsu then
|
||||||
return nil
|
return nil
|
||||||
@ -1050,10 +1041,10 @@ do
|
|||||||
return nil
|
return nil
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
return Nomsu(nil, key_nomsu, ":", value_nomsu)
|
return Nomsu(tree.source, key_nomsu, ":", value_nomsu)
|
||||||
elseif "IndexChain" == _exp_0 then
|
elseif "IndexChain" == _exp_0 then
|
||||||
local nomsu = Nomsu()
|
local nomsu = Nomsu(tree.source)
|
||||||
for i, bit in ipairs(tree) do
|
for i, bit in ipairs(tree.value) do
|
||||||
if i > 1 then
|
if i > 1 then
|
||||||
nomsu:append(".")
|
nomsu:append(".")
|
||||||
end
|
end
|
||||||
@ -1068,14 +1059,14 @@ do
|
|||||||
end
|
end
|
||||||
return nomsu
|
return nomsu
|
||||||
elseif "Number" == _exp_0 then
|
elseif "Number" == _exp_0 then
|
||||||
return Nomsu(nil, tostring(tree.value))
|
return Nomsu(tree.source, tostring(tree.value))
|
||||||
elseif "Var" == _exp_0 then
|
elseif "Var" == _exp_0 then
|
||||||
return Nomsu(nil, "%", tree.value)
|
return Nomsu(tree.source, "%", tree.value)
|
||||||
elseif "Comment" == _exp_0 then
|
elseif "Comment" == _exp_0 then
|
||||||
if inline then
|
if inline then
|
||||||
return nil
|
return nil
|
||||||
end
|
end
|
||||||
return Nomsu(nil, "#", tree.value:gsub("\n", "\n "))
|
return Nomsu(tree.source, "#", tree.value:gsub("\n", "\n "))
|
||||||
else
|
else
|
||||||
return error("Unknown type: " .. tostring(tree.type))
|
return error("Unknown type: " .. tostring(tree.type))
|
||||||
end
|
end
|
||||||
@ -1084,7 +1075,7 @@ do
|
|||||||
if tree.type == 'Text' and #tree == 1 and type(tree[1]) == 'string' then
|
if tree.type == 'Text' and #tree == 1 and type(tree[1]) == 'string' then
|
||||||
return tree[1]
|
return tree[1]
|
||||||
end
|
end
|
||||||
local lua = Lua(nil, "return ", self:tree_to_lua(tree), ";")
|
local lua = Lua(tree.source, "return ", self:tree_to_lua(tree), ";")
|
||||||
return self:run_lua(lua)
|
return self:run_lua(lua)
|
||||||
end,
|
end,
|
||||||
walk_tree = function(self, tree, depth)
|
walk_tree = function(self, tree, depth)
|
||||||
@ -1093,8 +1084,9 @@ do
|
|||||||
end
|
end
|
||||||
coroutine.yield(tree, depth)
|
coroutine.yield(tree, depth)
|
||||||
if tree.is_multi then
|
if tree.is_multi then
|
||||||
for _index_0 = 1, #tree do
|
local _list_0 = tree.value
|
||||||
local v = tree[_index_0]
|
for _index_0 = 1, #_list_0 do
|
||||||
|
local v = _list_0[_index_0]
|
||||||
if Types.is_node(v) then
|
if Types.is_node(v) then
|
||||||
self:walk_tree(v, depth + 1)
|
self:walk_tree(v, depth + 1)
|
||||||
end
|
end
|
||||||
@ -1107,7 +1099,7 @@ do
|
|||||||
local lua = nomsu:tree_to_lua(_block):as_statements()
|
local lua = nomsu:tree_to_lua(_block):as_statements()
|
||||||
lua:declare_locals()
|
lua:declare_locals()
|
||||||
nomsu:run_lua(lua)
|
nomsu:run_lua(lua)
|
||||||
return Lua(nil, "if IMMEDIATE then\n ", lua, "\nend")
|
return Lua(_block.source, "if IMMEDIATE then\n ", lua, "\nend")
|
||||||
end)
|
end)
|
||||||
local add_lua_string_bits
|
local add_lua_string_bits
|
||||||
add_lua_string_bits = function(lua, code)
|
add_lua_string_bits = function(lua, code)
|
||||||
@ -1115,8 +1107,9 @@ do
|
|||||||
lua:append(", ", nomsu:tree_to_lua(code))
|
lua:append(", ", nomsu:tree_to_lua(code))
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
for _index_0 = 1, #code do
|
local _list_0 = code.value
|
||||||
local bit = code[_index_0]
|
for _index_0 = 1, #_list_0 do
|
||||||
|
local bit = _list_0[_index_0]
|
||||||
lua:append(", ")
|
lua:append(", ")
|
||||||
if type(bit) == "string" then
|
if type(bit) == "string" then
|
||||||
lua:append(repr(bit))
|
lua:append(repr(bit))
|
||||||
@ -1130,21 +1123,22 @@ do
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
self:define_compile_action("Lua %code", function(self, _code)
|
self:define_compile_action("Lua %code", function(self, _code)
|
||||||
local lua = Lua.Value(nil, "Lua(nil")
|
local lua = Lua.Value(_code.source, "Lua(", repr(_code.source))
|
||||||
add_lua_string_bits(lua, _code)
|
add_lua_string_bits(lua, _code)
|
||||||
lua:append(")")
|
lua:append(")")
|
||||||
return lua
|
return lua
|
||||||
end)
|
end)
|
||||||
self:define_compile_action("Lua value %code", function(self, _code)
|
self:define_compile_action("Lua value %code", function(self, _code)
|
||||||
local lua = Lua.Value(nil, "Lua.Value(nil")
|
local lua = Lua.Value(_code.source, "Lua.Value(", repr(_code.source))
|
||||||
add_lua_string_bits(lua, _code)
|
add_lua_string_bits(lua, _code)
|
||||||
lua:append(")")
|
lua:append(")")
|
||||||
return lua
|
return lua
|
||||||
end)
|
end)
|
||||||
local add_lua_bits
|
local add_lua_bits
|
||||||
add_lua_bits = function(lua, code)
|
add_lua_bits = function(lua, code)
|
||||||
for _index_0 = 1, #code do
|
local _list_0 = code.value
|
||||||
local bit = code[_index_0]
|
for _index_0 = 1, #_list_0 do
|
||||||
|
local bit = _list_0[_index_0]
|
||||||
if type(bit) == "string" then
|
if type(bit) == "string" then
|
||||||
lua:append(bit)
|
lua:append(bit)
|
||||||
else
|
else
|
||||||
@ -1159,20 +1153,20 @@ do
|
|||||||
end
|
end
|
||||||
self:define_compile_action("lua> %code", function(self, _code)
|
self:define_compile_action("lua> %code", function(self, _code)
|
||||||
if _code.type ~= "Text" then
|
if _code.type ~= "Text" then
|
||||||
return Lua(nil, "nomsu:run_lua(", nomsu:tree_to_lua(_code), ");")
|
return Lua(self.source, "nomsu:run_lua(", nomsu:tree_to_lua(_code), ");")
|
||||||
end
|
end
|
||||||
return add_lua_bits(Lua(), _code)
|
return add_lua_bits(Lua(self.source), _code)
|
||||||
end)
|
end)
|
||||||
self:define_compile_action("=lua %code", function(self, _code)
|
self:define_compile_action("=lua %code", function(self, _code)
|
||||||
if _code.type ~= "Text" then
|
if _code.type ~= "Text" then
|
||||||
return Lua.Value(nil, "nomsu:run_lua(", nomsu:tree_to_lua(_code), ":as_statements('return '))")
|
return Lua.Value(self.source, "nomsu:run_lua(", nomsu:tree_to_lua(_code), ":as_statements('return '))")
|
||||||
end
|
end
|
||||||
return add_lua_bits(Lua.Value(), _code)
|
return add_lua_bits(Lua.Value(self.source), _code)
|
||||||
end)
|
end)
|
||||||
return self:define_compile_action("use %path", function(self, _path)
|
return self:define_compile_action("use %path", function(self, _path)
|
||||||
local path = nomsu:tree_to_value(_path)
|
local path = nomsu:tree_to_value(_path)
|
||||||
nomsu:run_file(path)
|
nomsu:run_file(path)
|
||||||
return Lua(nil, "nomsu:run_file(" .. tostring(repr(path)) .. ");")
|
return Lua(_path.source, "nomsu:run_file(" .. tostring(repr(path)) .. ");")
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
210
nomsu.moon
210
nomsu.moon
@ -200,9 +200,14 @@ NOMSU_DEFS = with {}
|
|||||||
return true
|
return true
|
||||||
|
|
||||||
setmetatable(NOMSU_DEFS, {__index:(key)=>
|
setmetatable(NOMSU_DEFS, {__index:(key)=>
|
||||||
make_node = (src, ...)->
|
make_node = (start, ...)->
|
||||||
tree = Types[key](...)
|
args = {...}
|
||||||
insert lpeg.userdata.depth_first_sources, {src, tree}
|
stop = args[#args]
|
||||||
|
source = lpeg.userdata.source\sub(start, stop)
|
||||||
|
args[#args] = nil
|
||||||
|
tree = if Types[key].is_multi
|
||||||
|
Types[key](Tuple(unpack(args)), source)
|
||||||
|
else Types[key](args[1], source)
|
||||||
return tree
|
return tree
|
||||||
self[key] = make_node
|
self[key] = make_node
|
||||||
return make_node
|
return make_node
|
||||||
@ -217,7 +222,7 @@ NOMSU_PATTERN = do
|
|||||||
anon_def <- ({ident} (" "*) ":"
|
anon_def <- ({ident} (" "*) ":"
|
||||||
{((%nl " "+ [^%nl]*)+) / ([^%nl]*)}) -> "%1 <- %2"
|
{((%nl " "+ [^%nl]*)+) / ([^%nl]*)}) -> "%1 <- %2"
|
||||||
captured_def <- ({ident} (" "*) "(" {ident} ")" (" "*) ":"
|
captured_def <- ({ident} (" "*) "(" {ident} ")" (" "*) ":"
|
||||||
{((%nl " "+ [^%nl]*)+) / ([^%nl]*)}) -> "%1 <- (({} %3) -> %2)"
|
{((%nl " "+ [^%nl]*)+) / ([^%nl]*)}) -> "%1 <- (({} %3 {}) -> %2)"
|
||||||
ident <- [a-zA-Z_][a-zA-Z0-9_]*
|
ident <- [a-zA-Z_][a-zA-Z0-9_]*
|
||||||
comment <- "--" [^%nl]*
|
comment <- "--" [^%nl]*
|
||||||
]]
|
]]
|
||||||
@ -314,7 +319,7 @@ class NomsuCompiler
|
|||||||
stub = assert(stub_pattern\match(alias))
|
stub = assert(stub_pattern\match(alias))
|
||||||
stub_args = assert(var_pattern\match(alias))
|
stub_args = assert(var_pattern\match(alias))
|
||||||
(is_compile_action and @environment.COMPILE_ACTIONS or @environment.ACTIONS)[stub] = fn
|
(is_compile_action and @environment.COMPILE_ACTIONS or @environment.ACTIONS)[stub] = fn
|
||||||
arg_orders[stub] = [fn_arg_positions[Types.Var(a)\as_lua_id!] for a in *stub_args]
|
arg_orders[stub] = [fn_arg_positions[Types.Var.as_lua_id {value:a}] for a in *stub_args]
|
||||||
@environment.ARG_ORDERS[fn] = arg_orders
|
@environment.ARG_ORDERS[fn] = arg_orders
|
||||||
|
|
||||||
define_compile_action: (signature, fn)=>
|
define_compile_action: (signature, fn)=>
|
||||||
@ -329,7 +334,7 @@ class NomsuCompiler
|
|||||||
nomsu_code = Nomsu(filename, nomsu_code)
|
nomsu_code = Nomsu(filename, nomsu_code)
|
||||||
userdata = {
|
userdata = {
|
||||||
source_code:nomsu_code, indent_stack: {""}, errors: {},
|
source_code:nomsu_code, indent_stack: {""}, errors: {},
|
||||||
depth_first_sources: {},
|
source: nomsu_code.source,
|
||||||
}
|
}
|
||||||
|
|
||||||
old_userdata, lpeg.userdata = lpeg.userdata, userdata
|
old_userdata, lpeg.userdata = lpeg.userdata, userdata
|
||||||
@ -344,21 +349,7 @@ class NomsuCompiler
|
|||||||
errors = [userdata.errors[k] for k in *keys]
|
errors = [userdata.errors[k] for k in *keys]
|
||||||
error(concat(errors, "\n\n"), 0)
|
error(concat(errors, "\n\n"), 0)
|
||||||
|
|
||||||
src_map = {}
|
return tree
|
||||||
src_i = 1
|
|
||||||
walk_tree = (tree, path)->
|
|
||||||
if tree.is_multi
|
|
||||||
for i, v in ipairs tree
|
|
||||||
if Types.is_node(v)
|
|
||||||
walk_tree(v, Tuple(i, path))
|
|
||||||
src, t2 = unpack(userdata.depth_first_sources[src_i])
|
|
||||||
src_i += 1
|
|
||||||
assert t2 == tree
|
|
||||||
src_map[path] = src
|
|
||||||
walk_tree tree, Tuple!
|
|
||||||
assert src_i == #userdata.depth_first_sources + 1
|
|
||||||
|
|
||||||
return tree, src_map
|
|
||||||
|
|
||||||
run: (nomsu_code, compile_fn=nil)=>
|
run: (nomsu_code, compile_fn=nil)=>
|
||||||
if #tostring(nomsu_code) == 0 then return nil
|
if #tostring(nomsu_code) == 0 then return nil
|
||||||
@ -427,13 +418,13 @@ class NomsuCompiler
|
|||||||
|
|
||||||
MAX_LINE = 80 -- For beautification purposes, try not to make lines much longer than this value
|
MAX_LINE = 80 -- For beautification purposes, try not to make lines much longer than this value
|
||||||
math_expression = re.compile [[ ([+-] " ")* "%" (" " [*/^+-] (" " [+-])* " %")+ !. ]]
|
math_expression = re.compile [[ ([+-] " ")* "%" (" " [*/^+-] (" " [+-])* " %")+ !. ]]
|
||||||
tree_to_lua: (tree, path=Tuple!)=>
|
tree_to_lua: (tree)=>
|
||||||
switch tree.type
|
switch tree.type
|
||||||
when "Action"
|
when "Action"
|
||||||
stub = tree\get_stub!
|
stub = tree\get_stub!
|
||||||
compile_action = @environment.COMPILE_ACTIONS[stub]
|
compile_action = @environment.COMPILE_ACTIONS[stub]
|
||||||
if compile_action
|
if compile_action
|
||||||
args = [arg for arg in *tree when type(arg) != "string"]
|
args = [arg for arg in *tree.value when type(arg) != "string"]
|
||||||
-- Force all compile-time actions to take a tree location
|
-- Force all compile-time actions to take a tree location
|
||||||
args = [args[p-1] for p in *@environment.ARG_ORDERS[compile_action][stub]]
|
args = [args[p-1] for p in *@environment.ARG_ORDERS[compile_action][stub]]
|
||||||
-- Force Lua to avoid tail call optimization for debugging purposes
|
-- Force Lua to avoid tail call optimization for debugging purposes
|
||||||
@ -442,29 +433,29 @@ class NomsuCompiler
|
|||||||
if not ret then error("Failed to produce any Lua")
|
if not ret then error("Failed to produce any Lua")
|
||||||
return ret
|
return ret
|
||||||
action = rawget(@environment.ACTIONS, stub)
|
action = rawget(@environment.ACTIONS, stub)
|
||||||
lua = Lua.Value!
|
lua = Lua.Value(tree.source)
|
||||||
if not action and math_expression\match(stub)
|
if not action and math_expression\match(stub)
|
||||||
-- This is a bit of a hack, but this code handles arbitrarily complex
|
-- This is a bit of a hack, but this code handles arbitrarily complex
|
||||||
-- math expressions like 2*x + 3^2 without having to define a single
|
-- math expressions like 2*x + 3^2 without having to define a single
|
||||||
-- action for every possibility.
|
-- action for every possibility.
|
||||||
for i,tok in ipairs tree
|
for i,tok in ipairs tree.value
|
||||||
if type(tok) == 'string'
|
if type(tok) == 'string'
|
||||||
lua\append tok
|
lua\append tok
|
||||||
else
|
else
|
||||||
tok_lua = @tree_to_lua(tok, Tuple(i, path))
|
tok_lua = @tree_to_lua(tok)
|
||||||
unless tok_lua.is_value
|
unless tok_lua.is_value
|
||||||
error("non-expression value inside math expression: #{colored.yellow repr(tok)}")
|
error("non-expression value inside math expression: #{colored.yellow repr(tok)}")
|
||||||
if tok.type == "Action"
|
if tok.type == "Action"
|
||||||
tok_lua\parenthesize!
|
tok_lua\parenthesize!
|
||||||
lua\append tok_lua
|
lua\append tok_lua
|
||||||
if i < #tree
|
if i < #tree.value
|
||||||
lua\append " "
|
lua\append " "
|
||||||
return lua
|
return lua
|
||||||
|
|
||||||
args = {}
|
args = {}
|
||||||
for i, tok in ipairs tree
|
for i, tok in ipairs tree.value
|
||||||
if type(tok) == "string" then continue
|
if type(tok) == "string" then continue
|
||||||
arg_lua = @tree_to_lua(tok, Tuple(i, path))
|
arg_lua = @tree_to_lua(tok)
|
||||||
unless arg_lua.is_value
|
unless arg_lua.is_value
|
||||||
error "Cannot use:\n#{colored.yellow repr(tok)}\nas an argument to #{stub}, since it's not an expression, it produces: #{repr arg_lua}", 0
|
error "Cannot use:\n#{colored.yellow repr(tok)}\nas an argument to #{stub}, since it's not an expression, it produces: #{repr arg_lua}", 0
|
||||||
insert args, arg_lua
|
insert args, arg_lua
|
||||||
@ -486,25 +477,25 @@ class NomsuCompiler
|
|||||||
if type(t) != 'userdata'
|
if type(t) != 'userdata'
|
||||||
return repr(t)
|
return repr(t)
|
||||||
if t.is_multi
|
if t.is_multi
|
||||||
bits = [make_tree(bit) for bit in *t]
|
bits = [make_tree(bit) for bit in *t.value]
|
||||||
return t.type.."("..table.concat(bits, ", ")..")"
|
return t.type.."(Tuple("..table.concat(bits, ", ").."), "..repr(t.source)..")"
|
||||||
else
|
else
|
||||||
return t.type.."("..make_tree(t[1])..")"
|
return t.type.."("..repr(t.value)..", "..repr(t.source)..")"
|
||||||
Lua.Value nil, make_tree(tree[1])
|
Lua.Value tree.source, make_tree(tree.value[1])
|
||||||
|
|
||||||
when "Block"
|
when "Block"
|
||||||
lua = Lua!
|
lua = Lua(tree.source)
|
||||||
for i,line in ipairs tree
|
for i,line in ipairs tree.value
|
||||||
line_lua = @tree_to_lua(line, Tuple(i, path))
|
line_lua = @tree_to_lua(line)
|
||||||
if i > 1
|
if i > 1
|
||||||
lua\append "\n"
|
lua\append "\n"
|
||||||
lua\append line_lua\as_statements!
|
lua\append line_lua\as_statements!
|
||||||
return lua
|
return lua
|
||||||
|
|
||||||
when "Text"
|
when "Text"
|
||||||
lua = Lua.Value!
|
lua = Lua.Value(tree.source)
|
||||||
string_buffer = ""
|
string_buffer = ""
|
||||||
for i, bit in ipairs tree
|
for i, bit in ipairs tree.value
|
||||||
if type(bit) == "string"
|
if type(bit) == "string"
|
||||||
string_buffer ..= bit
|
string_buffer ..= bit
|
||||||
continue
|
continue
|
||||||
@ -512,12 +503,12 @@ class NomsuCompiler
|
|||||||
if #lua.bits > 0 then lua\append ".."
|
if #lua.bits > 0 then lua\append ".."
|
||||||
lua\append repr(string_buffer)
|
lua\append repr(string_buffer)
|
||||||
string_buffer = ""
|
string_buffer = ""
|
||||||
bit_lua = @tree_to_lua(bit, Tuple(i, path))
|
bit_lua = @tree_to_lua(bit)
|
||||||
unless bit_lua.is_value
|
unless bit_lua.is_value
|
||||||
error "Cannot use #{colored.yellow repr(bit)} as a string interpolation value, since it's not an expression.", 0
|
error "Cannot use #{colored.yellow repr(bit)} as a string interpolation value, since it's not an expression.", 0
|
||||||
if #lua.bits > 0 then lua\append ".."
|
if #lua.bits > 0 then lua\append ".."
|
||||||
if bit.type != "Text"
|
if bit.type != "Text"
|
||||||
bit_lua = Lua.Value(nil, "stringify(",bit_lua,")")
|
bit_lua = Lua.Value(bit.source, "stringify(",bit_lua,")")
|
||||||
lua\append bit_lua
|
lua\append bit_lua
|
||||||
|
|
||||||
if string_buffer ~= "" or #lua.bits == 0
|
if string_buffer ~= "" or #lua.bits == 0
|
||||||
@ -529,10 +520,10 @@ class NomsuCompiler
|
|||||||
return lua
|
return lua
|
||||||
|
|
||||||
when "List"
|
when "List"
|
||||||
lua = Lua.Value nil, "{"
|
lua = Lua.Value tree.source, "{"
|
||||||
line_length = 0
|
line_length = 0
|
||||||
for i, item in ipairs tree
|
for i, item in ipairs tree.value
|
||||||
item_lua = @tree_to_lua(item, Tuple(i, path))
|
item_lua = @tree_to_lua(item)
|
||||||
unless item_lua.is_value
|
unless item_lua.is_value
|
||||||
error "Cannot use #{colored.yellow repr(item)} as a list item, since it's not an expression.", 0
|
error "Cannot use #{colored.yellow repr(item)} as a list item, since it's not an expression.", 0
|
||||||
lua\append item_lua
|
lua\append item_lua
|
||||||
@ -542,7 +533,7 @@ class NomsuCompiler
|
|||||||
line_length = #last_line
|
line_length = #last_line
|
||||||
else
|
else
|
||||||
line_length += #last_line
|
line_length += #last_line
|
||||||
if i < #tree
|
if i < #tree.value
|
||||||
if line_length >= MAX_LINE
|
if line_length >= MAX_LINE
|
||||||
lua\append ",\n "
|
lua\append ",\n "
|
||||||
line_length = 0
|
line_length = 0
|
||||||
@ -553,10 +544,10 @@ class NomsuCompiler
|
|||||||
return lua
|
return lua
|
||||||
|
|
||||||
when "Dict"
|
when "Dict"
|
||||||
lua = Lua.Value nil, "{"
|
lua = Lua.Value tree.source, "{"
|
||||||
line_length = 0
|
line_length = 0
|
||||||
for i, entry in ipairs tree
|
for i, entry in ipairs tree.value
|
||||||
entry_lua = @tree_to_lua(entry, Tuple(i, path))
|
entry_lua = @tree_to_lua(entry)
|
||||||
lua\append entry_lua
|
lua\append entry_lua
|
||||||
entry_lua_str = tostring(entry_lua)
|
entry_lua_str = tostring(entry_lua)
|
||||||
-- TODO: maybe make this more accurate? It's only a heuristic, so eh...
|
-- TODO: maybe make this more accurate? It's only a heuristic, so eh...
|
||||||
@ -565,7 +556,7 @@ class NomsuCompiler
|
|||||||
line_length = #last_line
|
line_length = #last_line
|
||||||
else
|
else
|
||||||
line_length += #entry_lua_str
|
line_length += #entry_lua_str
|
||||||
if i < #tree
|
if i < #tree.value
|
||||||
if line_length >= MAX_LINE
|
if line_length >= MAX_LINE
|
||||||
lua\append ",\n "
|
lua\append ",\n "
|
||||||
line_length = 0
|
line_length = 0
|
||||||
@ -576,35 +567,35 @@ class NomsuCompiler
|
|||||||
return lua
|
return lua
|
||||||
|
|
||||||
when "DictEntry"
|
when "DictEntry"
|
||||||
key, value = tree[1], tree[2]
|
key, value = tree.value[1], tree.value[2]
|
||||||
key_lua = @tree_to_lua(key, Tuple(1, path))
|
key_lua = @tree_to_lua(key)
|
||||||
unless key_lua.is_value
|
unless key_lua.is_value
|
||||||
error "Cannot use #{colored.yellow repr(key)} as a dict key, since it's not an expression.", 0
|
error "Cannot use #{colored.yellow repr(key)} as a dict key, since it's not an expression.", 0
|
||||||
value_lua = value and @tree_to_lua(value, Tuple(2, path)) or Lua.Value(nil, "true")
|
value_lua = value and @tree_to_lua(value) or Lua.Value(key.source, "true")
|
||||||
unless value_lua.is_value
|
unless value_lua.is_value
|
||||||
error "Cannot use #{colored.yellow repr(value)} as a dict value, since it's not an expression.", 0
|
error "Cannot use #{colored.yellow repr(value)} as a dict value, since it's not an expression.", 0
|
||||||
key_str = tostring(key_lua)\match([=[["']([a-zA-Z_][a-zA-Z0-9_]*)['"]]=])
|
key_str = tostring(key_lua)\match([=[["']([a-zA-Z_][a-zA-Z0-9_]*)['"]]=])
|
||||||
return if key_str
|
return if key_str
|
||||||
Lua nil, key_str,"=",value_lua
|
Lua tree.source, key_str,"=",value_lua
|
||||||
elseif tostring(key_lua)\sub(1,1) == "["
|
elseif tostring(key_lua)\sub(1,1) == "["
|
||||||
-- NOTE: this *must* use a space after the [ to avoid freaking out
|
-- NOTE: this *must* use a space after the [ to avoid freaking out
|
||||||
-- Lua's parser if the inner expression is a long string. Lua
|
-- Lua's parser if the inner expression is a long string. Lua
|
||||||
-- parses x[[[y]]] as x("[y]"), not as x["y"]
|
-- parses x[[[y]]] as x("[y]"), not as x["y"]
|
||||||
Lua nil, "[ ",key_lua,"]=",value_lua
|
Lua tree.source, "[ ",key_lua,"]=",value_lua
|
||||||
else
|
else
|
||||||
Lua nil, "[",key_lua,"]=",value_lua
|
Lua tree.source, "[",key_lua,"]=",value_lua
|
||||||
|
|
||||||
when "IndexChain"
|
when "IndexChain"
|
||||||
lua = @tree_to_lua(tree[1], Tuple(1, path))
|
lua = @tree_to_lua(tree.value[1])
|
||||||
unless lua.is_value
|
unless lua.is_value
|
||||||
error "Cannot index #{colored.yellow repr(tree[1])}, since it's not an expression.", 0
|
error "Cannot index #{colored.yellow repr(tree.value[1])}, since it's not an expression.", 0
|
||||||
first_char = tostring(lua)\sub(1,1)
|
first_char = tostring(lua)\sub(1,1)
|
||||||
if first_char == "{" or first_char == '"' or first_char == "["
|
if first_char == "{" or first_char == '"' or first_char == "["
|
||||||
lua\parenthesize!
|
lua\parenthesize!
|
||||||
|
|
||||||
for i=2,#tree
|
for i=2,#tree.value
|
||||||
key = tree[i]
|
key = tree.value[i]
|
||||||
key_lua = @tree_to_lua(key, Tuple(i, path))
|
key_lua = @tree_to_lua(key)
|
||||||
unless key_lua.is_value
|
unless key_lua.is_value
|
||||||
error "Cannot use #{colored.yellow repr(key)} as an index, since it's not an expression.", 0
|
error "Cannot use #{colored.yellow repr(key)} as an index, since it's not an expression.", 0
|
||||||
key_lua_str = tostring(key_lua)
|
key_lua_str = tostring(key_lua)
|
||||||
@ -620,13 +611,10 @@ class NomsuCompiler
|
|||||||
return lua
|
return lua
|
||||||
|
|
||||||
when "Number"
|
when "Number"
|
||||||
Lua.Value(nil, tostring(tree.value))
|
Lua.Value(tree.source, tostring(tree.value))
|
||||||
|
|
||||||
when "Var"
|
when "Var"
|
||||||
Lua.Value(nil, tree\as_lua_id!)
|
Lua.Value(tree.source, tree\as_lua_id!)
|
||||||
|
|
||||||
when "Comment"
|
|
||||||
Lua(nil, "--"..tree.value\gsub("\n","\n--").."\n")
|
|
||||||
|
|
||||||
else
|
else
|
||||||
error("Unknown type: #{tree.type}")
|
error("Unknown type: #{tree.type}")
|
||||||
@ -636,8 +624,8 @@ class NomsuCompiler
|
|||||||
switch tree.type
|
switch tree.type
|
||||||
when "Action"
|
when "Action"
|
||||||
if inline
|
if inline
|
||||||
nomsu = Nomsu!
|
nomsu = Nomsu(tree.source)
|
||||||
for i,bit in ipairs tree
|
for i,bit in ipairs tree.value
|
||||||
if type(bit) == "string"
|
if type(bit) == "string"
|
||||||
if i > 1
|
if i > 1
|
||||||
nomsu\append " "
|
nomsu\append " "
|
||||||
@ -652,11 +640,11 @@ class NomsuCompiler
|
|||||||
nomsu\append arg_nomsu
|
nomsu\append arg_nomsu
|
||||||
return nomsu
|
return nomsu
|
||||||
else
|
else
|
||||||
nomsu = Nomsu!
|
nomsu = Nomsu(tree.source)
|
||||||
next_space = ""
|
next_space = ""
|
||||||
-- TODO: track line length as we go and use 80-that instead of 80 for wrapping
|
-- TODO: track line length as we go and use 80-that instead of 80 for wrapping
|
||||||
last_colon = nil
|
last_colon = nil
|
||||||
for i,bit in ipairs tree
|
for i,bit in ipairs tree.value
|
||||||
if type(bit) == "string"
|
if type(bit) == "string"
|
||||||
nomsu\append next_space, bit
|
nomsu\append next_space, bit
|
||||||
next_space = " "
|
next_space = " "
|
||||||
@ -683,9 +671,9 @@ class NomsuCompiler
|
|||||||
-- These types carry their own indentation
|
-- These types carry their own indentation
|
||||||
if bit.type != "List" and bit.type != "Dict" and bit.type != "Text"
|
if bit.type != "List" and bit.type != "Dict" and bit.type != "Text"
|
||||||
if i == 1
|
if i == 1
|
||||||
arg_nomsu = Nomsu(nil, "(..)\n ", arg_nomsu)
|
arg_nomsu = Nomsu(bit.source, "(..)\n ", arg_nomsu)
|
||||||
else
|
else
|
||||||
arg_nomsu = Nomsu(nil, "\n ", arg_nomsu)
|
arg_nomsu = Nomsu(bit.source, "\n ", arg_nomsu)
|
||||||
|
|
||||||
if last_colon == i-1 and (bit.type == "Action" or bit.type == "Block")
|
if last_colon == i-1 and (bit.type == "Action" or bit.type == "Block")
|
||||||
next_space = ""
|
next_space = ""
|
||||||
@ -699,21 +687,21 @@ class NomsuCompiler
|
|||||||
when "EscapedNomsu"
|
when "EscapedNomsu"
|
||||||
nomsu = @tree_to_nomsu(tree.value, true)
|
nomsu = @tree_to_nomsu(tree.value, true)
|
||||||
if nomsu == nil and not inline
|
if nomsu == nil and not inline
|
||||||
nomsu = @tree_to_nomsu(tree[1])
|
nomsu = @tree_to_nomsu(tree.value[1])
|
||||||
return nomsu and Nomsu nil, "\\:\n ", nomsu
|
return nomsu and Nomsu tree.source, "\\:\n ", nomsu
|
||||||
return nomsu and Nomsu nil, "\\(", nomsu, ")"
|
return nomsu and Nomsu tree.source, "\\(", nomsu, ")"
|
||||||
|
|
||||||
when "Block"
|
when "Block"
|
||||||
if inline
|
if inline
|
||||||
nomsu = Nomsu!
|
nomsu = Nomsu(tree.source)
|
||||||
for i,line in ipairs @
|
for i,line in ipairs tree.value
|
||||||
if i > 1
|
if i > 1
|
||||||
nomsu\append "; "
|
nomsu\append "; "
|
||||||
line_nomsu = @tree_to_nomsu(line,true)
|
line_nomsu = @tree_to_nomsu(line,true)
|
||||||
return nil unless line_nomsu
|
return nil unless line_nomsu
|
||||||
nomsu\append line_nomsu
|
nomsu\append line_nomsu
|
||||||
return nomsu
|
return nomsu
|
||||||
nomsu = Nomsu!
|
nomsu = Nomsu(tree.source)
|
||||||
for i, line in ipairs @
|
for i, line in ipairs @
|
||||||
line = assert(@tree_to_nomsu(line, nil, true), "Could not convert line to nomsu")
|
line = assert(@tree_to_nomsu(line, nil, true), "Could not convert line to nomsu")
|
||||||
nomsu\append line
|
nomsu\append line
|
||||||
@ -725,8 +713,8 @@ class NomsuCompiler
|
|||||||
|
|
||||||
when "Text"
|
when "Text"
|
||||||
if inline
|
if inline
|
||||||
nomsu = Nomsu(nil, '"')
|
nomsu = Nomsu(tree.source, '"')
|
||||||
for bit in *tree
|
for bit in *tree.value
|
||||||
if type(bit) == 'string'
|
if type(bit) == 'string'
|
||||||
-- TODO: unescape better?
|
-- TODO: unescape better?
|
||||||
nomsu\append (bit\gsub("\\","\\\\")\gsub("\n","\\n"))
|
nomsu\append (bit\gsub("\\","\\\\")\gsub("\n","\\n"))
|
||||||
@ -743,7 +731,7 @@ class NomsuCompiler
|
|||||||
inline_version = @tree_to_nomsu(tree, true)
|
inline_version = @tree_to_nomsu(tree, true)
|
||||||
if inline_version and #inline_version <= MAX_LINE
|
if inline_version and #inline_version <= MAX_LINE
|
||||||
return inline_version
|
return inline_version
|
||||||
nomsu = Nomsu(nil, '".."\n ')
|
nomsu = Nomsu(tree.source, '".."\n ')
|
||||||
for i, bit in ipairs @
|
for i, bit in ipairs @
|
||||||
if type(bit) == 'string'
|
if type(bit) == 'string'
|
||||||
nomsu\append (bit\gsub("\\","\\\\")\gsub("\n","\n "))
|
nomsu\append (bit\gsub("\\","\\\\")\gsub("\n","\n "))
|
||||||
@ -763,8 +751,8 @@ class NomsuCompiler
|
|||||||
|
|
||||||
when "List"
|
when "List"
|
||||||
if inline
|
if inline
|
||||||
nomsu = Nomsu(nil, "[")
|
nomsu = Nomsu(tree.source, "[")
|
||||||
for i, item in ipairs tree
|
for i, item in ipairs tree.value
|
||||||
item_nomsu = @tree_to_nomsu(item, true)
|
item_nomsu = @tree_to_nomsu(item, true)
|
||||||
return nil unless item_nomsu
|
return nil unless item_nomsu
|
||||||
if i > 1
|
if i > 1
|
||||||
@ -776,9 +764,9 @@ class NomsuCompiler
|
|||||||
inline_version = @tree_to_nomsu(tree, true)
|
inline_version = @tree_to_nomsu(tree, true)
|
||||||
if inline_version and #inline_version <= MAX_LINE
|
if inline_version and #inline_version <= MAX_LINE
|
||||||
return inline_version
|
return inline_version
|
||||||
nomsu = Nomsu(nil, "[..]")
|
nomsu = Nomsu(tree.source, "[..]")
|
||||||
line = Nomsu(nil, "\n ")
|
line = Nomsu(tree.source, "\n ")
|
||||||
for item in *tree
|
for item in *tree.value
|
||||||
item_nomsu = @tree_to_nomsu(item, true)
|
item_nomsu = @tree_to_nomsu(item, true)
|
||||||
if item_nomsu and #line + #", " + #item_nomsu <= MAX_LINE
|
if item_nomsu and #line + #", " + #item_nomsu <= MAX_LINE
|
||||||
if #line.bits > 1
|
if #line.bits > 1
|
||||||
@ -790,7 +778,7 @@ class NomsuCompiler
|
|||||||
return nil unless item_nomsu
|
return nil unless item_nomsu
|
||||||
if #line.bits > 1
|
if #line.bits > 1
|
||||||
nomsu\append line
|
nomsu\append line
|
||||||
line = Nomsu(nil, "\n ")
|
line = Nomsu(line.source, "\n ")
|
||||||
line\append item_nomsu
|
line\append item_nomsu
|
||||||
if #line.bits > 1
|
if #line.bits > 1
|
||||||
nomsu\append line
|
nomsu\append line
|
||||||
@ -798,8 +786,8 @@ class NomsuCompiler
|
|||||||
|
|
||||||
when "Dict"
|
when "Dict"
|
||||||
if inline
|
if inline
|
||||||
nomsu = Nomsu(nil, "{")
|
nomsu = Nomsu(tree.source, "{")
|
||||||
for i, entry in ipairs tree
|
for i, entry in ipairs tree.value
|
||||||
entry_nomsu = @tree_to_nomsu(entry, true)
|
entry_nomsu = @tree_to_nomsu(entry, true)
|
||||||
return nil unless entry_nomsu
|
return nil unless entry_nomsu
|
||||||
if i > 1
|
if i > 1
|
||||||
@ -810,9 +798,9 @@ class NomsuCompiler
|
|||||||
else
|
else
|
||||||
inline_version = @tree_to_nomsu(tree, true)
|
inline_version = @tree_to_nomsu(tree, true)
|
||||||
if inline_version then return inline_version
|
if inline_version then return inline_version
|
||||||
nomsu = Nomsu(nil, "{..}")
|
nomsu = Nomsu(tree.source, "{..}")
|
||||||
line = Nomsu(nil, "\n ")
|
line = Nomsu(tree.source, "\n ")
|
||||||
for entry in *tree
|
for entry in *tree.value
|
||||||
entry_nomsu = @tree_to_nomsu(entry)
|
entry_nomsu = @tree_to_nomsu(entry)
|
||||||
return nil unless entry_nomsu
|
return nil unless entry_nomsu
|
||||||
if #line + #tostring(entry_nomsu) <= MAX_LINE
|
if #line + #tostring(entry_nomsu) <= MAX_LINE
|
||||||
@ -822,31 +810,31 @@ class NomsuCompiler
|
|||||||
else
|
else
|
||||||
if #line.bits > 1
|
if #line.bits > 1
|
||||||
nomsu\append line
|
nomsu\append line
|
||||||
line = Nomsu(nil, "\n ")
|
line = Nomsu(line.source, "\n ")
|
||||||
line\append entry_nomsu
|
line\append entry_nomsu
|
||||||
if #line.bits > 1
|
if #line.bits > 1
|
||||||
nomsu\append line
|
nomsu\append line
|
||||||
return nomsu
|
return nomsu
|
||||||
|
|
||||||
when "DictEntry"
|
when "DictEntry"
|
||||||
key, value = tree[1], tree[2]
|
key, value = tree.value[1], tree.value[2]
|
||||||
key_nomsu = @tree_to_nomsu(key, true)
|
key_nomsu = @tree_to_nomsu(key, true)
|
||||||
return nil unless key_nomsu
|
return nil unless key_nomsu
|
||||||
if key.type == "Action" or key.type == "Block"
|
if key.type == "Action" or key.type == "Block"
|
||||||
key_nomsu\parenthesize!
|
key_nomsu\parenthesize!
|
||||||
value_nomsu = if value
|
value_nomsu = if value
|
||||||
@tree_to_nomsu(value, true)
|
@tree_to_nomsu(value, true)
|
||||||
else Nomsu(nil, "")
|
else Nomsu(tree.source, "")
|
||||||
if inline and not value_nomsu then return nil
|
if inline and not value_nomsu then return nil
|
||||||
if not value_nomsu
|
if not value_nomsu
|
||||||
return nil if inline
|
return nil if inline
|
||||||
value_nomsu = @tree_to_nomsu(value)
|
value_nomsu = @tree_to_nomsu(value)
|
||||||
return nil unless value_nomsu
|
return nil unless value_nomsu
|
||||||
return Nomsu nil, key_nomsu, ":", value_nomsu
|
return Nomsu tree.source, key_nomsu, ":", value_nomsu
|
||||||
|
|
||||||
when "IndexChain"
|
when "IndexChain"
|
||||||
nomsu = Nomsu!
|
nomsu = Nomsu(tree.source)
|
||||||
for i, bit in ipairs tree
|
for i, bit in ipairs tree.value
|
||||||
if i > 1
|
if i > 1
|
||||||
nomsu\append "."
|
nomsu\append "."
|
||||||
bit_nomsu = @tree_to_nomsu(bit, true)
|
bit_nomsu = @tree_to_nomsu(bit, true)
|
||||||
@ -857,14 +845,14 @@ class NomsuCompiler
|
|||||||
return nomsu
|
return nomsu
|
||||||
|
|
||||||
when "Number"
|
when "Number"
|
||||||
return Nomsu(nil, tostring(tree.value))
|
return Nomsu(tree.source, tostring(tree.value))
|
||||||
|
|
||||||
when "Var"
|
when "Var"
|
||||||
return Nomsu(nil, "%", tree.value)
|
return Nomsu(tree.source, "%", tree.value)
|
||||||
|
|
||||||
when "Comment"
|
when "Comment"
|
||||||
return nil if inline
|
return nil if inline
|
||||||
return Nomsu(nil, "#", tree.value\gsub("\n", "\n "))
|
return Nomsu(tree.source, "#", tree.value\gsub("\n", "\n "))
|
||||||
|
|
||||||
else
|
else
|
||||||
error("Unknown type: #{tree.type}")
|
error("Unknown type: #{tree.type}")
|
||||||
@ -873,13 +861,13 @@ class NomsuCompiler
|
|||||||
-- Special case for text literals
|
-- Special case for text literals
|
||||||
if tree.type == 'Text' and #tree == 1 and type(tree[1]) == 'string'
|
if tree.type == 'Text' and #tree == 1 and type(tree[1]) == 'string'
|
||||||
return tree[1]
|
return tree[1]
|
||||||
lua = Lua(nil, "return ",@tree_to_lua(tree),";")
|
lua = Lua(tree.source, "return ",@tree_to_lua(tree),";")
|
||||||
return @run_lua(lua)
|
return @run_lua(lua)
|
||||||
|
|
||||||
walk_tree: (tree, depth=0)=>
|
walk_tree: (tree, depth=0)=>
|
||||||
coroutine.yield(tree, depth)
|
coroutine.yield(tree, depth)
|
||||||
if tree.is_multi
|
if tree.is_multi
|
||||||
for v in *tree
|
for v in *tree.value
|
||||||
if Types.is_node(v)
|
if Types.is_node(v)
|
||||||
@walk_tree(v, depth+1)
|
@walk_tree(v, depth+1)
|
||||||
|
|
||||||
@ -890,13 +878,13 @@ class NomsuCompiler
|
|||||||
lua = nomsu\tree_to_lua(_block)\as_statements!
|
lua = nomsu\tree_to_lua(_block)\as_statements!
|
||||||
lua\declare_locals!
|
lua\declare_locals!
|
||||||
nomsu\run_lua(lua)
|
nomsu\run_lua(lua)
|
||||||
return Lua(nil, "if IMMEDIATE then\n ", lua, "\nend")
|
return Lua(_block.source, "if IMMEDIATE then\n ", lua, "\nend")
|
||||||
|
|
||||||
add_lua_string_bits = (lua, code)->
|
add_lua_string_bits = (lua, code)->
|
||||||
if code.type != "Text"
|
if code.type != "Text"
|
||||||
lua\append ", ", nomsu\tree_to_lua(code)
|
lua\append ", ", nomsu\tree_to_lua(code)
|
||||||
return
|
return
|
||||||
for bit in *code
|
for bit in *code.value
|
||||||
lua\append ", "
|
lua\append ", "
|
||||||
if type(bit) == "string"
|
if type(bit) == "string"
|
||||||
lua\append repr(bit)
|
lua\append repr(bit)
|
||||||
@ -907,19 +895,19 @@ class NomsuCompiler
|
|||||||
lua\append bit_lua
|
lua\append bit_lua
|
||||||
|
|
||||||
@define_compile_action "Lua %code", (_code)=>
|
@define_compile_action "Lua %code", (_code)=>
|
||||||
lua = Lua.Value(nil, "Lua(nil")
|
lua = Lua.Value(_code.source, "Lua(", repr(_code.source))
|
||||||
add_lua_string_bits(lua, _code)
|
add_lua_string_bits(lua, _code)
|
||||||
lua\append ")"
|
lua\append ")"
|
||||||
return lua
|
return lua
|
||||||
|
|
||||||
@define_compile_action "Lua value %code", (_code)=>
|
@define_compile_action "Lua value %code", (_code)=>
|
||||||
lua = Lua.Value(nil, "Lua.Value(nil")
|
lua = Lua.Value(_code.source, "Lua.Value(", repr(_code.source))
|
||||||
add_lua_string_bits(lua, _code)
|
add_lua_string_bits(lua, _code)
|
||||||
lua\append ")"
|
lua\append ")"
|
||||||
return lua
|
return lua
|
||||||
|
|
||||||
add_lua_bits = (lua, code)->
|
add_lua_bits = (lua, code)->
|
||||||
for bit in *code
|
for bit in *code.value
|
||||||
if type(bit) == "string"
|
if type(bit) == "string"
|
||||||
lua\append bit
|
lua\append bit
|
||||||
else
|
else
|
||||||
@ -931,18 +919,18 @@ class NomsuCompiler
|
|||||||
|
|
||||||
@define_compile_action "lua> %code", (_code)=>
|
@define_compile_action "lua> %code", (_code)=>
|
||||||
if _code.type != "Text"
|
if _code.type != "Text"
|
||||||
return Lua nil, "nomsu:run_lua(", nomsu\tree_to_lua(_code), ");"
|
return Lua @source, "nomsu:run_lua(", nomsu\tree_to_lua(_code), ");"
|
||||||
return add_lua_bits(Lua!, _code)
|
return add_lua_bits(Lua(@source), _code)
|
||||||
|
|
||||||
@define_compile_action "=lua %code", (_code)=>
|
@define_compile_action "=lua %code", (_code)=>
|
||||||
if _code.type != "Text"
|
if _code.type != "Text"
|
||||||
return Lua.Value nil, "nomsu:run_lua(", nomsu\tree_to_lua(_code), ":as_statements('return '))"
|
return Lua.Value @source, "nomsu:run_lua(", nomsu\tree_to_lua(_code), ":as_statements('return '))"
|
||||||
return add_lua_bits(Lua.Value!, _code)
|
return add_lua_bits(Lua.Value(@source), _code)
|
||||||
|
|
||||||
@define_compile_action "use %path", (_path)=>
|
@define_compile_action "use %path", (_path)=>
|
||||||
path = nomsu\tree_to_value(_path)
|
path = nomsu\tree_to_value(_path)
|
||||||
nomsu\run_file(path)
|
nomsu\run_file(path)
|
||||||
return Lua(nil, "nomsu:run_file(#{repr path});")
|
return Lua(_path.source, "nomsu:run_file(#{repr path});")
|
||||||
|
|
||||||
-- Only run this code if this file was run directly with command line arguments, and not require()'d:
|
-- Only run this code if this file was run directly with command line arguments, and not require()'d:
|
||||||
if arg and debug_getinfo(2).func != require
|
if arg and debug_getinfo(2).func != require
|
||||||
|
@ -23,11 +23,12 @@ Tree = function(name, kind, methods)
|
|||||||
assert((kind == 'single') or (kind == 'multi'))
|
assert((kind == 'single') or (kind == 'multi'))
|
||||||
local is_multi = (kind == 'multi')
|
local is_multi = (kind == 'multi')
|
||||||
do
|
do
|
||||||
methods.with_value = function(self, value)
|
|
||||||
return getmetatable(self)(value)
|
|
||||||
end
|
|
||||||
methods.type = name
|
methods.type = name
|
||||||
methods.name = name
|
methods.name = name
|
||||||
|
methods.__new = function(self, value, source)
|
||||||
|
assert(source)
|
||||||
|
return value, source
|
||||||
|
end
|
||||||
methods.is_multi = is_multi
|
methods.is_multi = is_multi
|
||||||
methods.map = function(self, fn)
|
methods.map = function(self, fn)
|
||||||
if type(fn) == 'table' then
|
if type(fn) == 'table' then
|
||||||
@ -49,8 +50,9 @@ Tree = function(name, kind, methods)
|
|||||||
return tostring(self.name) .. "(" .. tostring(table.concat((function()
|
return tostring(self.name) .. "(" .. tostring(table.concat((function()
|
||||||
local _accum_0 = { }
|
local _accum_0 = { }
|
||||||
local _len_0 = 1
|
local _len_0 = 1
|
||||||
for _index_0 = 1, #self do
|
local _list_0 = self.value
|
||||||
local v = self[_index_0]
|
for _index_0 = 1, #_list_0 do
|
||||||
|
local v = _list_0[_index_0]
|
||||||
_accum_0[_len_0] = repr(v)
|
_accum_0[_len_0] = repr(v)
|
||||||
_len_0 = _len_0 + 1
|
_len_0 = _len_0 + 1
|
||||||
end
|
end
|
||||||
@ -68,16 +70,20 @@ Tree = function(name, kind, methods)
|
|||||||
do
|
do
|
||||||
local _accum_0 = { }
|
local _accum_0 = { }
|
||||||
local _len_0 = 1
|
local _len_0 = 1
|
||||||
for _index_0 = 1, #self do
|
local _list_0 = self.value
|
||||||
local v = self[_index_0]
|
for _index_0 = 1, #_list_0 do
|
||||||
|
local v = _list_0[_index_0]
|
||||||
_accum_0[_len_0] = v._map and v:_map(fn) or v
|
_accum_0[_len_0] = v._map and v:_map(fn) or v
|
||||||
_len_0 = _len_0 + 1
|
_len_0 = _len_0 + 1
|
||||||
end
|
end
|
||||||
new_vals = _accum_0
|
new_vals = _accum_0
|
||||||
end
|
end
|
||||||
local ret = getmetatable(self)(unpack(new_vals))
|
local ret = getmetatable(self)(Tuple(unpack(new_vals)), self.source)
|
||||||
return ret
|
return ret
|
||||||
end
|
end
|
||||||
|
methods.__ipairs = function(self)
|
||||||
|
return error()
|
||||||
|
end
|
||||||
else
|
else
|
||||||
methods.__tostring = function(self)
|
methods.__tostring = function(self)
|
||||||
return tostring(self.name) .. "(" .. tostring(repr(self.value)) .. ")"
|
return tostring(self.name) .. "(" .. tostring(repr(self.value)) .. ")"
|
||||||
@ -87,13 +93,10 @@ Tree = function(name, kind, methods)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
if is_multi then
|
Types[name] = immutable({
|
||||||
Types[name] = immutable(nil, methods)
|
"value",
|
||||||
else
|
"source"
|
||||||
Types[name] = immutable({
|
}, methods)
|
||||||
"value"
|
|
||||||
}, methods)
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
Tree("Block", 'multi')
|
Tree("Block", 'multi')
|
||||||
Tree("EscapedNomsu", 'multi')
|
Tree("EscapedNomsu", 'multi')
|
||||||
@ -124,8 +127,9 @@ Tree("Action", 'multi', {
|
|||||||
return concat((function()
|
return concat((function()
|
||||||
local _accum_0 = { }
|
local _accum_0 = { }
|
||||||
local _len_0 = 1
|
local _len_0 = 1
|
||||||
for _index_0 = 1, #self do
|
local _list_0 = self.value
|
||||||
local a = self[_index_0]
|
for _index_0 = 1, #_list_0 do
|
||||||
|
local a = _list_0[_index_0]
|
||||||
_accum_0[_len_0] = type(a) == "string" and a or "%" .. tostring(a.value)
|
_accum_0[_len_0] = type(a) == "string" and a or "%" .. tostring(a.value)
|
||||||
_len_0 = _len_0 + 1
|
_len_0 = _len_0 + 1
|
||||||
end
|
end
|
||||||
@ -135,8 +139,9 @@ Tree("Action", 'multi', {
|
|||||||
return concat((function()
|
return concat((function()
|
||||||
local _accum_0 = { }
|
local _accum_0 = { }
|
||||||
local _len_0 = 1
|
local _len_0 = 1
|
||||||
for _index_0 = 1, #self do
|
local _list_0 = self.value
|
||||||
local a = self[_index_0]
|
for _index_0 = 1, #_list_0 do
|
||||||
|
local a = _list_0[_index_0]
|
||||||
_accum_0[_len_0] = type(a) == "string" and a or "%"
|
_accum_0[_len_0] = type(a) == "string" and a or "%"
|
||||||
_len_0 = _len_0 + 1
|
_len_0 = _len_0 + 1
|
||||||
end
|
end
|
||||||
|
@ -18,9 +18,11 @@ Tree = (name, kind, methods)->
|
|||||||
assert((kind == 'single') or (kind == 'multi'))
|
assert((kind == 'single') or (kind == 'multi'))
|
||||||
is_multi = (kind == 'multi')
|
is_multi = (kind == 'multi')
|
||||||
with methods
|
with methods
|
||||||
.with_value = (value)=> getmetatable(self)(value)
|
|
||||||
.type = name
|
.type = name
|
||||||
.name = name
|
.name = name
|
||||||
|
.__new = (value, source)=>
|
||||||
|
assert source
|
||||||
|
return value, source
|
||||||
.is_multi = is_multi
|
.is_multi = is_multi
|
||||||
.map = (fn)=>
|
.map = (fn)=>
|
||||||
if type(fn) == 'table'
|
if type(fn) == 'table'
|
||||||
@ -31,22 +33,20 @@ Tree = (name, kind, methods)->
|
|||||||
fn = (k)-> _replacements[k]
|
fn = (k)-> _replacements[k]
|
||||||
return @_map(fn)
|
return @_map(fn)
|
||||||
if is_multi
|
if is_multi
|
||||||
.__tostring = => "#{@name}(#{table.concat [repr(v) for v in *@], ', '})"
|
.__tostring = => "#{@name}(#{table.concat [repr(v) for v in *@value], ', '})"
|
||||||
._map = (fn)=>
|
._map = (fn)=>
|
||||||
if ret = fn(@)
|
if ret = fn(@)
|
||||||
return ret
|
return ret
|
||||||
new_vals = [v._map and v\_map(fn) or v for v in *@]
|
new_vals = [v._map and v\_map(fn) or v for v in *@value]
|
||||||
ret = getmetatable(self)(unpack(new_vals))
|
ret = getmetatable(self)(Tuple(unpack(new_vals)), @source)
|
||||||
return ret
|
return ret
|
||||||
|
.__ipairs = => error!
|
||||||
else
|
else
|
||||||
.__tostring = => "#{@name}(#{repr(@value)})"
|
.__tostring = => "#{@name}(#{repr(@value)})"
|
||||||
._map = (fn)=>
|
._map = (fn)=>
|
||||||
fn(@) or @
|
fn(@) or @
|
||||||
|
|
||||||
if is_multi
|
Types[name] = immutable {"value", "source"}, methods
|
||||||
Types[name] = immutable nil, methods
|
|
||||||
else
|
|
||||||
Types[name] = immutable {"value"}, methods
|
|
||||||
|
|
||||||
Tree "Block", 'multi'
|
Tree "Block", 'multi'
|
||||||
Tree "EscapedNomsu", 'multi'
|
Tree "EscapedNomsu", 'multi'
|
||||||
@ -65,8 +65,8 @@ Tree "Var", 'single',
|
|||||||
Tree "Action", 'multi',
|
Tree "Action", 'multi',
|
||||||
get_stub: (include_names=false)=>
|
get_stub: (include_names=false)=>
|
||||||
if include_names
|
if include_names
|
||||||
concat [type(a) == "string" and a or "%#{a.value}" for a in *@], " "
|
concat [type(a) == "string" and a or "%#{a.value}" for a in *@value], " "
|
||||||
else
|
else
|
||||||
concat [type(a) == "string" and a or "%" for a in *@], " "
|
concat [type(a) == "string" and a or "%" for a in *@value], " "
|
||||||
|
|
||||||
return Types
|
return Types
|
||||||
|
@ -54,10 +54,10 @@ assume (((\%x as lua identifier) as text) = "_x") or barf "converting to identif
|
|||||||
|
|
||||||
assume ((run "return 99") = 99) or barf "run % failed."
|
assume ((run "return 99") = 99) or barf "run % failed."
|
||||||
|
|
||||||
say "Metaprogramming test passed."
|
|
||||||
|
|
||||||
%code <-: Lua "global_x = true;"
|
%code <-: Lua "global_x = true;"
|
||||||
lua> %code
|
lua> %code
|
||||||
assume (=lua "global_x") or barf "Running lua from a variable failed."
|
assume (=lua "global_x") or barf "Running lua from a variable failed."
|
||||||
%code <-: Lua value "global_x"
|
%code <-: Lua value "global_x"
|
||||||
assume (=lua %code) or barf "Running lua from a variable failed."
|
assume (=lua %code) or barf "Running lua from a variable failed."
|
||||||
|
|
||||||
|
say "Metaprogramming test passed."
|
||||||
|
Loading…
Reference in New Issue
Block a user