Added parens around lambdas (% -> %), and removed them from 'result %'
correspondingly.
This commit is contained in:
parent
ca653cbb84
commit
723eb9e1f1
@ -484,7 +484,7 @@ test:
|
|||||||
assume ((result of (: return 99)) == 99)
|
assume ((result of (: return 99)) == 99)
|
||||||
|
|
||||||
# Inline thunk:
|
# Inline thunk:
|
||||||
compile [result of %body] to (Lua value "(\(compile as ([] -> %body)))()")
|
compile [result of %body] to (Lua value "\(compile as ([] -> %body))()")
|
||||||
test:
|
test:
|
||||||
%t = [1, [2, [[3], 4], 5, [[[6]]]]]
|
%t = [1, [2, [[3], 4], 5, [[[6]]]]]
|
||||||
%flat = []
|
%flat = []
|
||||||
|
@ -6,14 +6,14 @@
|
|||||||
lua> "NOMSU_CORE_VERSION = 5"
|
lua> "NOMSU_CORE_VERSION = 5"
|
||||||
lua> ".."
|
lua> ".."
|
||||||
nomsu.COMPILE_ACTIONS["% -> %"] = function(nomsu, tree, \%args, \%body)
|
nomsu.COMPILE_ACTIONS["% -> %"] = function(nomsu, tree, \%args, \%body)
|
||||||
local lua = LuaCode.Value(tree.source, "function(")
|
local lua = LuaCode.Value(tree.source, "(function(")
|
||||||
if AST.is_syntax_tree(\%args, "Action") then \%args = \%args:get_args() end
|
if AST.is_syntax_tree(\%args, "Action") then \%args = \%args:get_args() end
|
||||||
local lua_args = table.map(\%args, function(a) return AST.is_syntax_tree(a) and tostring(nomsu:compile(a)) or a end)
|
local lua_args = table.map(\%args, function(a) return AST.is_syntax_tree(a) and tostring(nomsu:compile(a)) or a end)
|
||||||
lua:concat_append(lua_args, ", ")
|
lua:concat_append(lua_args, ", ")
|
||||||
local body_lua = AST.is_syntax_tree(\%body) and nomsu:compile(\%body):as_statements("return ") or \%body
|
local body_lua = AST.is_syntax_tree(\%body) and nomsu:compile(\%body):as_statements("return ") or \%body
|
||||||
body_lua:remove_free_vars(lua_args)
|
body_lua:remove_free_vars(lua_args)
|
||||||
body_lua:declare_locals()
|
body_lua:declare_locals()
|
||||||
lua:append(")\\n ", body_lua, "\\nend")
|
lua:append(")\\n ", body_lua, "\\nend)")
|
||||||
return lua
|
return lua
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user