More streamlining and cleanup.
This commit is contained in:
parent
a22de3fdbb
commit
f83cc3ad8a
58
code_obj.lua
58
code_obj.lua
@ -195,6 +195,7 @@ do
|
|||||||
end
|
end
|
||||||
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) == 'string')
|
||||||
if not (seen[var]) then
|
if not (seen[var]) then
|
||||||
self.free_vars[#self.free_vars + 1] = var
|
self.free_vars[#self.free_vars + 1] = var
|
||||||
seen[var] = true
|
seen[var] = true
|
||||||
@ -209,7 +210,8 @@ do
|
|||||||
local removals = { }
|
local removals = { }
|
||||||
for _index_0 = 1, #vars do
|
for _index_0 = 1, #vars do
|
||||||
local var = vars[_index_0]
|
local var = vars[_index_0]
|
||||||
removals[var[1]] = true
|
assert(type(var) == 'string')
|
||||||
|
removals[var] = true
|
||||||
end
|
end
|
||||||
local stack = {
|
local stack = {
|
||||||
self
|
self
|
||||||
@ -218,7 +220,8 @@ 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][1]] then
|
local free_var = lua.free_vars[i]
|
||||||
|
if removals[free_var] then
|
||||||
remove(lua.free_vars, i)
|
remove(lua.free_vars, i)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -232,26 +235,6 @@ do
|
|||||||
end
|
end
|
||||||
self.__str = nil
|
self.__str = nil
|
||||||
end,
|
end,
|
||||||
as_statements = function(self, prefix, suffix)
|
|
||||||
if prefix == nil then
|
|
||||||
prefix = ""
|
|
||||||
end
|
|
||||||
if suffix == nil then
|
|
||||||
suffix = ";"
|
|
||||||
end
|
|
||||||
if not (self.is_value) then
|
|
||||||
return self
|
|
||||||
end
|
|
||||||
local statements = LuaCode(self.source)
|
|
||||||
if prefix ~= "" then
|
|
||||||
statements:append(prefix)
|
|
||||||
end
|
|
||||||
statements:append(self)
|
|
||||||
if suffix ~= "" then
|
|
||||||
statements:append(suffix)
|
|
||||||
end
|
|
||||||
return statements
|
|
||||||
end,
|
|
||||||
declare_locals = function(self, to_declare)
|
declare_locals = function(self, to_declare)
|
||||||
if to_declare == nil then
|
if to_declare == nil then
|
||||||
to_declare = nil
|
to_declare = nil
|
||||||
@ -281,19 +264,30 @@ do
|
|||||||
end
|
end
|
||||||
if #to_declare > 0 then
|
if #to_declare > 0 then
|
||||||
self:remove_free_vars(to_declare)
|
self:remove_free_vars(to_declare)
|
||||||
self:prepend("local " .. tostring(concat((function()
|
self:prepend("local " .. tostring(concat(to_declare, ", ")) .. ";\n")
|
||||||
local _accum_0 = { }
|
|
||||||
local _len_0 = 1
|
|
||||||
for _index_0 = 1, #to_declare do
|
|
||||||
local v = to_declare[_index_0]
|
|
||||||
_accum_0[_len_0] = type(v) == 'string' and v or string.as_lua_id(v[1])
|
|
||||||
_len_0 = _len_0 + 1
|
|
||||||
end
|
|
||||||
return _accum_0
|
|
||||||
end)(), ", ")) .. ";\n")
|
|
||||||
end
|
end
|
||||||
return to_declare
|
return to_declare
|
||||||
end,
|
end,
|
||||||
|
as_statements = function(self, prefix, suffix)
|
||||||
|
if prefix == nil then
|
||||||
|
prefix = ""
|
||||||
|
end
|
||||||
|
if suffix == nil then
|
||||||
|
suffix = ";"
|
||||||
|
end
|
||||||
|
if not (self.is_value) then
|
||||||
|
return self
|
||||||
|
end
|
||||||
|
local statements = LuaCode(self.source)
|
||||||
|
if prefix ~= "" then
|
||||||
|
statements:append(prefix)
|
||||||
|
end
|
||||||
|
statements:append(self)
|
||||||
|
if suffix ~= "" then
|
||||||
|
statements:append(suffix)
|
||||||
|
end
|
||||||
|
return statements
|
||||||
|
end,
|
||||||
__tostring = function(self)
|
__tostring = function(self)
|
||||||
if self.__str == nil then
|
if self.__str == nil then
|
||||||
local buff, indents = { }, self.indents
|
local buff, indents = { }, self.indents
|
||||||
|
@ -115,6 +115,7 @@ class LuaCode extends Code
|
|||||||
return unless #vars > 0
|
return unless #vars > 0
|
||||||
seen = {[v]:true for v in *@free_vars}
|
seen = {[v]:true for v in *@free_vars}
|
||||||
for var in *vars
|
for var in *vars
|
||||||
|
assert type(var) == 'string'
|
||||||
unless seen[var]
|
unless seen[var]
|
||||||
@free_vars[#@free_vars+1] = var
|
@free_vars[#@free_vars+1] = var
|
||||||
seen[var] = true
|
seen[var] = true
|
||||||
@ -124,30 +125,21 @@ class LuaCode extends Code
|
|||||||
return unless #vars > 0
|
return unless #vars > 0
|
||||||
removals = {}
|
removals = {}
|
||||||
for var in *vars
|
for var in *vars
|
||||||
removals[var[1]] = true
|
assert type(var) == 'string'
|
||||||
|
removals[var] = 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][1]]
|
free_var = lua.free_vars[i]
|
||||||
|
if removals[free_var]
|
||||||
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'
|
||||||
stack[#stack+1] = b
|
stack[#stack+1] = b
|
||||||
@__str = nil
|
@__str = nil
|
||||||
|
|
||||||
as_statements: (prefix="", suffix=";")=>
|
|
||||||
unless @is_value
|
|
||||||
return self
|
|
||||||
statements = LuaCode(@source)
|
|
||||||
if prefix != ""
|
|
||||||
statements\append prefix
|
|
||||||
statements\append self
|
|
||||||
if suffix != ""
|
|
||||||
statements\append suffix
|
|
||||||
return statements
|
|
||||||
|
|
||||||
declare_locals: (to_declare=nil)=>
|
declare_locals: (to_declare=nil)=>
|
||||||
if to_declare == nil
|
if to_declare == nil
|
||||||
to_declare, seen = {}, {}
|
to_declare, seen = {}, {}
|
||||||
@ -162,9 +154,20 @@ class LuaCode extends Code
|
|||||||
gather_from self
|
gather_from self
|
||||||
if #to_declare > 0
|
if #to_declare > 0
|
||||||
@remove_free_vars to_declare
|
@remove_free_vars to_declare
|
||||||
@prepend "local #{concat [type(v) == 'string' and v or string.as_lua_id(v[1]) for v in *to_declare], ", "};\n"
|
@prepend "local #{concat to_declare, ", "};\n"
|
||||||
return to_declare
|
return to_declare
|
||||||
|
|
||||||
|
as_statements: (prefix="", suffix=";")=>
|
||||||
|
unless @is_value
|
||||||
|
return self
|
||||||
|
statements = LuaCode(@source)
|
||||||
|
if prefix != ""
|
||||||
|
statements\append prefix
|
||||||
|
statements\append self
|
||||||
|
if suffix != ""
|
||||||
|
statements\append suffix
|
||||||
|
return statements
|
||||||
|
|
||||||
__tostring: =>
|
__tostring: =>
|
||||||
if @__str == nil
|
if @__str == nil
|
||||||
buff, indents = {}, @indents
|
buff, indents = {}, @indents
|
||||||
|
@ -55,6 +55,8 @@ compile [pop from %list, remove last from %list] to
|
|||||||
compile [remove index %index from %list] to
|
compile [remove index %index from %list] to
|
||||||
Lua "table.remove(\(%list as lua expr), \(%index as lua expr))"
|
Lua "table.remove(\(%list as lua expr), \(%index as lua expr))"
|
||||||
|
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
# List Comprehension
|
# List Comprehension
|
||||||
parse [%expression for %item in %iterable] as
|
parse [%expression for %item in %iterable] as
|
||||||
result of
|
result of
|
||||||
@ -73,6 +75,7 @@ parse [..]
|
|||||||
add %expression to %comprehension
|
add %expression to %comprehension
|
||||||
return %comprehension
|
return %comprehension
|
||||||
|
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
parse [%expression for %var in %start to %stop] as
|
parse [%expression for %var in %start to %stop] as
|
||||||
%expression for %var in %start to %stop via 1
|
%expression for %var in %start to %stop via 1
|
||||||
|
|
||||||
|
@ -152,7 +152,7 @@ compile [..]
|
|||||||
%body has subtree % where
|
%body has subtree % where
|
||||||
(%.type = "Action") and
|
(%.type = "Action") and
|
||||||
(%.stub is "do next %") and
|
(%.stub is "do next %") and
|
||||||
%.3 = %var
|
%.(3).1 = %var.1
|
||||||
..: to %lua write "\n ::continue_\(%var as lua identifier)::"
|
..: to %lua write "\n ::continue_\(%var as lua identifier)::"
|
||||||
to %lua write "\nend --numeric for-loop"
|
to %lua write "\nend --numeric for-loop"
|
||||||
|
|
||||||
@ -160,7 +160,7 @@ compile [..]
|
|||||||
%body has subtree % where
|
%body has subtree % where
|
||||||
(%.type = "Action") and
|
(%.type = "Action") and
|
||||||
(%.stub is "stop %") and
|
(%.stub is "stop %") and
|
||||||
%.2 = %var
|
%.(2).1 = %var.1
|
||||||
..
|
..
|
||||||
%lua <-
|
%lua <-
|
||||||
Lua ".."
|
Lua ".."
|
||||||
@ -246,7 +246,7 @@ compile [..]
|
|||||||
%.2.(1) = %value.(1)
|
%.2.(1) = %value.(1)
|
||||||
..: 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
|
||||||
%lua <-
|
%lua <-
|
||||||
Lua ".."
|
Lua ".."
|
||||||
do -- scope for stopping for % = % loop
|
do -- scope for stopping for % = % loop
|
||||||
@ -300,7 +300,7 @@ compile [when %body] to
|
|||||||
%is_first <- (no)
|
%is_first <- (no)
|
||||||
|
|
||||||
assume (%fallthroughs = []) or barf "Unfinished fallthrough conditions in 'when' block"
|
assume (%fallthroughs = []) or barf "Unfinished fallthrough conditions in 'when' block"
|
||||||
assume ((length of %code) > 0) or barf "Empty body for 'when' block"
|
assume ((length of "\%code") > 0) or barf "Empty body for 'when' block"
|
||||||
to %code write "\nend --when"
|
to %code write "\nend --when"
|
||||||
return %code
|
return %code
|
||||||
|
|
||||||
@ -346,7 +346,7 @@ compile [when %branch_value = ? %body, when %branch_value is ? %body] to
|
|||||||
%is_first <- (no)
|
%is_first <- (no)
|
||||||
|
|
||||||
assume (%fallthroughs = []) or barf "Unfinished fallthrough conditions in 'when' block"
|
assume (%fallthroughs = []) or barf "Unfinished fallthrough conditions in 'when' block"
|
||||||
assume ((length of %code) > 0) or barf "No body for 'when % = ?' block!"
|
assume ((length of "\%code") > 0) or barf "No body for 'when % = ?' block!"
|
||||||
to %code write "\nend"
|
to %code write "\nend"
|
||||||
%code <-
|
%code <-
|
||||||
Lua ".."
|
Lua ".."
|
||||||
|
@ -2,46 +2,92 @@
|
|||||||
This File contains actions for making actions and compile-time actions and some helper
|
This File contains actions for making actions and compile-time actions and some helper
|
||||||
functions to make that easier.
|
functions to make that easier.
|
||||||
|
|
||||||
# Compile-time action to make compile-time actions:
|
|
||||||
lua> ".."
|
lua> ".."
|
||||||
nomsu.COMPILE_ACTIONS["give % nickname %"] = (function(nomsu, tree, \%action, \%nickname, is_compile_time)
|
nomsu.COMPILE_ACTIONS["% -> %"] = function(nomsu, tree, \%args, \%body)
|
||||||
local function arg_to_string(a) return tostring(nomsu:compile(a)) end
|
local lua = LuaCode(tree.source, "function(")
|
||||||
local action_args = table.map(\%action:get_args(), arg_to_string)
|
if AST.is_syntax_tree(\%args, "Action") then \%args = \%args:get_args() end
|
||||||
local nickname_args = table.map(\%nickname:get_args(), arg_to_string)
|
local lua_args = table.map(\%args, function(a) return AST.is_syntax_tree(a) and tostring(nomsu:compile(a)) or a end)
|
||||||
if utils.equivalent(action_args, nickname_args) then
|
lua:concat_append(lua_args, ", ")
|
||||||
if is_compile_time then
|
local body_lua = AST.is_syntax_tree(\%body) and nomsu:compile(\%body):as_statements("return ") or \%body
|
||||||
return LuaCode(tree.source, "nomsu.COMPILE_ACTIONS[", repr(\%nickname.stub), "] = nomsu.COMPILE_ACTIONS[", repr(\%action.stub), "]")
|
body_lua:remove_free_vars(lua_args)
|
||||||
|
body_lua:declare_locals()
|
||||||
|
lua:append(")\n ", body_lua, "\nend")
|
||||||
|
return lua
|
||||||
|
end
|
||||||
|
|
||||||
|
lua> ".."
|
||||||
|
nomsu.COMPILE_ACTIONS["compile as %"] = function(nomsu, tree, \%action)
|
||||||
|
local lua = LuaCode.Value(tree.source, "nomsu.COMPILE_ACTIONS[", repr(\%action.stub), "](")
|
||||||
|
local lua_args = table.map(\%action:get_args(), function(a) return nomsu:compile(a) end)
|
||||||
|
table.insert(lua_args, 1, "nomsu")
|
||||||
|
table.insert(lua_args, 2, "tree")
|
||||||
|
lua:concat_append(lua_args, ", ")
|
||||||
|
lua:append(")")
|
||||||
|
return lua
|
||||||
|
end
|
||||||
|
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
lua> ".."
|
||||||
|
nomsu.COMPILE_ACTIONS["compile % to %"] = function(nomsu, tree, \%actions, \%body)
|
||||||
|
local \%args = {"nomsu", "tree", unpack(table.map(\%actions[1]:get_args(), function(a) return tostring(nomsu:compile(a)) end))}
|
||||||
|
local lua = LuaCode(tree.source, "nomsu.COMPILE_ACTIONS[", repr(\%actions[1].stub),
|
||||||
|
"] = ", \(compile as: %args -> %body))
|
||||||
|
for i=2,#\%actions do
|
||||||
|
local alias = \%actions[i]
|
||||||
|
local \%alias_args = {"nomsu", "tree", unpack(table.map(alias:get_args(), function(a) return tostring(nomsu:compile(a)) end))}
|
||||||
|
lua:append("\nnomsu.COMPILE_ACTIONS[", repr(alias.stub), "] = ")
|
||||||
|
if utils.equivalent(\%args, \%alias_args) then
|
||||||
|
lua:append("nomsu.COMPILE_ACTIONS[", repr(\%actions[1].stub), "]")
|
||||||
else
|
else
|
||||||
return LuaCode(tree.source, "A", string.as_lua_id(\%nickname.stub), " = A", string.as_lua_id(\%action.stub))
|
lua:append("function(")
|
||||||
|
lua:concat_append(\%alias_args, ", ")
|
||||||
|
lua:append(")\n return nomsu.COMPILE_ACTIONS[", repr(\%actions[1].stub), "](")
|
||||||
|
lua:concat_append(\%args, ", ")
|
||||||
|
lua:append(")\nend")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
local lua = LuaCode(tree.source)
|
return lua
|
||||||
if is_compile_time then
|
end
|
||||||
lua:append("nomsu.COMPILE_ACTIONS[", repr(\%nickname.stub), "] = ")
|
|
||||||
table.insert(action_args, 1, "nomsu")
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
table.insert(nickname_args, 1, "nomsu")
|
|
||||||
table.insert(action_args, 2, "tree")
|
compile [local action %actions %body] to
|
||||||
table.insert(nickname_args, 2, "tree")
|
lua> ".."
|
||||||
else
|
local fn_name = "A"..string.as_lua_id(\%actions[1].stub)
|
||||||
lua:append("A", string.as_lua_id(\%nickname.stub), " = ")
|
local \%args = table.map(\%actions[1]:get_args(), function(a) return tostring(nomsu:compile(a)) end)
|
||||||
end
|
local lua = LuaCode(tree.source, fn_name, " = ", \(compile as: %args -> %body))
|
||||||
lua:append("(function(")
|
lua:add_free_vars({fn_name})
|
||||||
lua:concat_append(nickname_args, ", ")
|
for i=2,#\%actions do
|
||||||
if is_compile_time then
|
local alias = \%actions[i]
|
||||||
lua:append(")\n return nomsu.COMPILE_ACTIONS[", repr(\%action.stub), "](")
|
local alias_name = "A"..string.as_lua_id(alias.stub)
|
||||||
else
|
lua:add_free_vars({alias_name})
|
||||||
lua:append(")\n return A", string.as_lua_id(\%action.stub), "(")
|
local \%alias_args = table.map(alias:get_args(), function(a) return tostring(nomsu:compile(a)) end)
|
||||||
end
|
lua:append("\n", alias_name, " = ")
|
||||||
lua:concat_append(action_args, ", ")
|
if utils.equivalent(\%args, \%alias_args) then
|
||||||
lua:append(")\nend)")
|
lua:append(fn_name)
|
||||||
if not is_compile_time then
|
else
|
||||||
lua:add_free_vars({"A"..string.as_lua_id(\%nickname.stub)})
|
lua:append("function(")
|
||||||
|
lua:concat_append(\%alias_args, ", ")
|
||||||
|
lua:append(")\n return ", fn_name, "(")
|
||||||
|
lua:concat_append(\%args, ", ")
|
||||||
|
lua:append(")\nend")
|
||||||
|
end
|
||||||
end
|
end
|
||||||
return lua
|
return lua
|
||||||
end)
|
|
||||||
|
|
||||||
__MANGLE_INDEX = 0
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
nomsu.COMPILE_ACTIONS["parse % as %"] = (function(nomsu, tree, \%actions, \%body)
|
|
||||||
|
compile [action %actions %body] to
|
||||||
|
lua> ".."
|
||||||
|
local lua = \(compile as: local action %actions %body)
|
||||||
|
lua:remove_free_vars(table.map(\%actions, function(a) return "A"..string.as_lua_id(a.stub) end))
|
||||||
|
return lua
|
||||||
|
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
compile [parse %actions as %body] to
|
||||||
|
lua> ".."
|
||||||
local replacements = {}
|
local replacements = {}
|
||||||
for i,arg in ipairs(\%actions[1]:get_args()) do
|
for i,arg in ipairs(\%actions[1]:get_args()) do
|
||||||
replacements[arg[1]] = tostring(nomsu:compile(arg))
|
replacements[arg[1]] = tostring(nomsu:compile(arg))
|
||||||
@ -50,81 +96,25 @@ lua> ".."
|
|||||||
if not AST.is_syntax_tree(t) then
|
if not AST.is_syntax_tree(t) then
|
||||||
return repr(t)
|
return repr(t)
|
||||||
elseif t.type ~= 'Var' then
|
elseif t.type ~= 'Var' then
|
||||||
local args = table.map(t, make_tree)
|
local args = {repr(tostring(t.source)), unpack(table.map(t, make_tree))}
|
||||||
table.insert(args, 1, repr(tostring(t.source)))
|
|
||||||
return t.type.."("..table.concat(args, ", ")..")"
|
return t.type.."("..table.concat(args, ", ")..")"
|
||||||
elseif replacements[t[1]] then
|
elseif replacements[t[1]] then
|
||||||
return replacements[t[1]]
|
return replacements[t[1]]
|
||||||
else
|
else
|
||||||
return t.type.."("..repr(tostring(t.source))..", "..repr(t[1].." \\0").."..('%X'):format(__MANGLE_INDEX))"
|
return t.type.."("..repr(tostring(t.source))..", "..repr(t[1].." \\0").."..string.format('%X', __MANGLE_INDEX))"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
local lua = LuaCode(tree.source, "nomsu.COMPILE_ACTIONS[", repr(\%actions[1].stub), "] = (function(nomsu, tree")
|
local \%new_body = LuaCode(\%body.source,
|
||||||
lua:add_free_vars({"A"..string.as_lua_id(\%actions[1].stub)})
|
"__MANGLE_INDEX = (__MANGLE_INDEX or 0) + 1",
|
||||||
for _,arg in ipairs(\%actions[1]:get_args()) do
|
"\nlocal tree = ", make_tree(\%body),
|
||||||
lua:append(", ", nomsu:compile(arg))
|
"\nreturn nomsu:compile(tree)")
|
||||||
end
|
return \(compile as: compile %actions to %new_body)
|
||||||
lua:append(")\n __MANGLE_INDEX = __MANGLE_INDEX + 1",
|
|
||||||
"\n local tree = ", make_tree(\%body),
|
|
||||||
"\n local lua = nomsu:compile(tree)",
|
|
||||||
"\n lua:remove_free_vars({")
|
|
||||||
local vars = table.map(\%actions[1]:get_args(), function(a)
|
|
||||||
return "Var("..repr(tostring(a.source))..", "..repr(a[1])..")"
|
|
||||||
end)
|
|
||||||
lua:concat_append(vars, ", ")
|
|
||||||
lua:append("})\n return lua\nend)")
|
|
||||||
|
|
||||||
for i=2,#\%actions do
|
|
||||||
lua:append("\n", nomsu.COMPILE_ACTIONS["give % nickname %"](nomsu, \%actions[i], \%actions[1], \%actions[i], true))
|
|
||||||
end
|
|
||||||
return lua
|
|
||||||
end)
|
|
||||||
|
|
||||||
nomsu.COMPILE_ACTIONS["local action % %"] = (function(nomsu, tree, \%actions, \%body, is_compile_time)
|
|
||||||
local lua = LuaCode(tree.source)
|
|
||||||
if is_compile_time then
|
|
||||||
lua:append("nomsu.COMPILE_ACTIONS[", repr(\%actions[1].stub), "] = ")
|
|
||||||
else
|
|
||||||
lua:append("A", string.as_lua_id(\%actions[1].stub), " = ")
|
|
||||||
lua:add_free_vars({"A"..string.as_lua_id(\%actions[1].stub)})
|
|
||||||
end
|
|
||||||
lua:append("(function(")
|
|
||||||
local args = \%actions[1]:get_args()
|
|
||||||
local lua_args = table.map(args, function(a) return nomsu:compile(a) end)
|
|
||||||
if is_compile_time then
|
|
||||||
table.insert(lua_args, 1, "nomsu")
|
|
||||||
table.insert(lua_args, 2, "tree")
|
|
||||||
end
|
|
||||||
lua:concat_append(lua_args, ", ")
|
|
||||||
local body_lua = nomsu:compile(\%body):as_statements("return ")
|
|
||||||
body_lua:remove_free_vars(args)
|
|
||||||
body_lua:declare_locals()
|
|
||||||
lua:append(")\n ", body_lua, "\nend)")
|
|
||||||
for i=2,#\%actions do
|
|
||||||
lua:append("\n", nomsu.COMPILE_ACTIONS["give % nickname %"](nomsu, \%actions[i], \%actions[1], \%actions[i], is_compile_time))
|
|
||||||
end
|
|
||||||
return lua
|
|
||||||
end)
|
|
||||||
|
|
||||||
-- Compile-time actions are always global, since they affect the state of the compiler
|
|
||||||
nomsu.COMPILE_ACTIONS["compile % to %"] = (function(nomsu, tree, \%actions, \%body)
|
|
||||||
local lua = nomsu.COMPILE_ACTIONS["local action % %"](nomsu, tree, \%actions, \%body, true)
|
|
||||||
return lua
|
|
||||||
end)
|
|
||||||
|
|
||||||
nomsu.COMPILE_ACTIONS["action % %"] = (function(nomsu, tree, \%actions, \%body)
|
|
||||||
local lua = nomsu.COMPILE_ACTIONS["local action % %"](nomsu, tree, \%actions, \%body)
|
|
||||||
lua:remove_free_vars(table.map(\%actions, function(a) return "A"..a.stub:as_lua_id() end))
|
|
||||||
return lua
|
|
||||||
end)
|
|
||||||
|
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
compile [remove action %action] to
|
compile [remove action %action] to
|
||||||
Lua ".."
|
Lua ".."
|
||||||
A\(=lua "string.as_lua_id(\(%action.stub))") = nil
|
A\(=lua "string.as_lua_id(\(%action.stub))") = nil
|
||||||
ARG_ORDERS[fn] = nil
|
|
||||||
COMPILE_TIME[fn] = nil
|
|
||||||
|
|
||||||
action [%tree as nomsu]
|
action [%tree as nomsu]
|
||||||
=lua "nomsu:tree_to_nomsu(\%tree)"
|
=lua "nomsu:tree_to_nomsu(\%tree)"
|
||||||
|
@ -50,7 +50,7 @@ compile [%var <- %value] to
|
|||||||
lua> ".."
|
lua> ".."
|
||||||
local lua = LuaCode(tree.source, \%var_lua, ' = ', \%value_lua, ';')
|
local lua = LuaCode(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({tostring(nomsu:compile(\%var))})
|
||||||
end
|
end
|
||||||
return lua
|
return lua
|
||||||
|
|
||||||
@ -72,7 +72,7 @@ compile [<- %assignments, assign %assignments] to
|
|||||||
local value_lua = \(%value as lua)
|
local value_lua = \(%value as lua)
|
||||||
if not value_lua.is_value then error("Invalid value for assignment: "..\(%value as text)) end
|
if not value_lua.is_value then error("Invalid value for assignment: "..\(%value as text)) end
|
||||||
if \%target.type == "Var" then
|
if \%target.type == "Var" then
|
||||||
lhs:add_free_vars({\%target})
|
lhs:add_free_vars({tostring(target_lua)})
|
||||||
end
|
end
|
||||||
if i > 1 then
|
if i > 1 then
|
||||||
lhs:append(", ")
|
lhs:append(", ")
|
||||||
@ -94,7 +94,7 @@ compile [external %var <- %value] to
|
|||||||
|
|
||||||
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(table.map(\%externs, function(v) return tostring(nomsu:compile(v)) end))"
|
||||||
return %body_lua
|
return %body_lua
|
||||||
|
|
||||||
compile [with %assignments %body] to
|
compile [with %assignments %body] to
|
||||||
@ -112,16 +112,15 @@ compile [with %assignments %body] to
|
|||||||
if not value_lua.is_value then
|
if not value_lua.is_value then
|
||||||
error("Invalid value for assignment: "..tostring(\%value))
|
error("Invalid value for assignment: "..tostring(\%value))
|
||||||
end
|
end
|
||||||
if \%target.type == "Var" then
|
|
||||||
lhs:add_free_vars({\%target})
|
|
||||||
end
|
|
||||||
if i > 1 then
|
if i > 1 then
|
||||||
lhs:append(", ")
|
lhs:append(", ")
|
||||||
rhs:append(", ")
|
rhs:append(", ")
|
||||||
end
|
end
|
||||||
lhs:append(target_lua)
|
lhs:append(target_lua)
|
||||||
rhs:append(value_lua)
|
rhs:append(value_lua)
|
||||||
vars[i] = \%target
|
if \%target.type == "Var" then
|
||||||
|
vars[i] = tostring(target_lua)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
\%lua:remove_free_vars(vars)
|
\%lua:remove_free_vars(vars)
|
||||||
\%lua:prepend("local ", lhs, " = ", rhs, ";\n")
|
\%lua:prepend("local ", lhs, " = ", rhs, ";\n")
|
||||||
|
@ -512,7 +512,6 @@ do
|
|||||||
if source == nil then
|
if source == nil then
|
||||||
source = nil
|
source = nil
|
||||||
end
|
end
|
||||||
assert(type(lua) ~= 'string', "Attempt to run lua string instead of Lua (object)")
|
|
||||||
local lua_string = tostring(lua)
|
local lua_string = tostring(lua)
|
||||||
local run_lua_fn, err = load(lua_string, nil and tostring(source or lua.source), "t", self)
|
local run_lua_fn, err = load(lua_string, nil and tostring(source or lua.source), "t", self)
|
||||||
if not run_lua_fn then
|
if not run_lua_fn then
|
||||||
|
@ -345,7 +345,6 @@ with NomsuCompiler
|
|||||||
return ret
|
return ret
|
||||||
|
|
||||||
.run_lua = (lua, source=nil)=>
|
.run_lua = (lua, source=nil)=>
|
||||||
assert(type(lua) != 'string', "Attempt to run lua string instead of Lua (object)")
|
|
||||||
lua_string = tostring(lua)
|
lua_string = tostring(lua)
|
||||||
run_lua_fn, err = load(lua_string, nil and tostring(source or lua.source), "t", self)
|
run_lua_fn, err = load(lua_string, nil and tostring(source or lua.source), "t", self)
|
||||||
if not run_lua_fn
|
if not run_lua_fn
|
||||||
|
@ -9,8 +9,11 @@ local Source
|
|||||||
Source = require("code_obj").Source
|
Source = require("code_obj").Source
|
||||||
local unpack = unpack or table.unpack
|
local unpack = unpack or table.unpack
|
||||||
local AST = { }
|
local AST = { }
|
||||||
AST.is_syntax_tree = function(n)
|
AST.is_syntax_tree = function(n, t)
|
||||||
return type(n) == 'table' and getmetatable(n) and AST[n.type] == getmetatable(n)
|
if t == nil then
|
||||||
|
t = nil
|
||||||
|
end
|
||||||
|
return type(n) == 'table' and getmetatable(n) and AST[n.type] == getmetatable(n) and (t == nil or n.type == t)
|
||||||
end
|
end
|
||||||
local types = {
|
local types = {
|
||||||
"Number",
|
"Number",
|
||||||
@ -37,7 +40,7 @@ for _index_0 = 1, #types do
|
|||||||
return getmetatable(x) == self
|
return getmetatable(x) == self
|
||||||
end
|
end
|
||||||
cls.__tostring = function(self)
|
cls.__tostring = function(self)
|
||||||
return tostring(self.name) .. "(" .. tostring(concat((function()
|
return tostring(self.type) .. "(" .. tostring(repr(tostring(self.source))) .. ", " .. tostring(concat((function()
|
||||||
local _accum_0 = { }
|
local _accum_0 = { }
|
||||||
local _len_0 = 1
|
local _len_0 = 1
|
||||||
for _index_1 = 1, #self do
|
for _index_1 = 1, #self do
|
||||||
|
@ -6,8 +6,8 @@
|
|||||||
unpack or= table.unpack
|
unpack or= table.unpack
|
||||||
|
|
||||||
AST = {}
|
AST = {}
|
||||||
AST.is_syntax_tree = (n)->
|
AST.is_syntax_tree = (n, t=nil)->
|
||||||
type(n) == 'table' and getmetatable(n) and AST[n.type] == getmetatable(n)
|
type(n) == 'table' and getmetatable(n) and AST[n.type] == getmetatable(n) and (t == nil or n.type == t)
|
||||||
|
|
||||||
types = {"Number", "Var", "Block", "EscapedNomsu", "Text", "List", "Dict", "DictEntry",
|
types = {"Number", "Var", "Block", "EscapedNomsu", "Text", "List", "Dict", "DictEntry",
|
||||||
"IndexChain", "Action", "FileChunks"}
|
"IndexChain", "Action", "FileChunks"}
|
||||||
@ -19,7 +19,7 @@ for name in *types
|
|||||||
.__name = name
|
.__name = name
|
||||||
.type = name
|
.type = name
|
||||||
.is_instance = (x)=> getmetatable(x) == @
|
.is_instance = (x)=> getmetatable(x) == @
|
||||||
.__tostring = => "#{@name}(#{concat([repr(v) for v in *@], ', ')})"
|
.__tostring = => "#{@type}(#{repr tostring(@source)}, #{concat([repr(v) for v in *@], ', ')})"
|
||||||
.map = (fn)=>
|
.map = (fn)=>
|
||||||
if replacement = fn(@) then return replacement
|
if replacement = fn(@) then return replacement
|
||||||
replacements = [AST.is_syntax_tree(v) and v\map(fn) or nil for v in *@]
|
replacements = [AST.is_syntax_tree(v) and v\map(fn) or nil for v in *@]
|
||||||
|
@ -9,6 +9,11 @@ do
|
|||||||
local _obj_0 = string
|
local _obj_0 = string
|
||||||
match, sub, rep, gsub, format, byte, match, find = _obj_0.match, _obj_0.sub, _obj_0.rep, _obj_0.gsub, _obj_0.format, _obj_0.byte, _obj_0.match, _obj_0.find
|
match, sub, rep, gsub, format, byte, match, find = _obj_0.match, _obj_0.sub, _obj_0.rep, _obj_0.gsub, _obj_0.format, _obj_0.byte, _obj_0.match, _obj_0.find
|
||||||
end
|
end
|
||||||
|
local NomsuCode, LuaCode, Source
|
||||||
|
do
|
||||||
|
local _obj_0 = require("code_obj")
|
||||||
|
NomsuCode, LuaCode, Source = _obj_0.NomsuCode, _obj_0.LuaCode, _obj_0.Source
|
||||||
|
end
|
||||||
local AST = require("nomsu_tree")
|
local AST = require("nomsu_tree")
|
||||||
local NOMSU_DEFS
|
local NOMSU_DEFS
|
||||||
do
|
do
|
||||||
|
Loading…
Reference in New Issue
Block a user