Macro macro macro macro.

This commit is contained in:
Bruce Hill 2017-08-22 03:28:44 -07:00
parent a5863030ec
commit 039c620df2
2 changed files with 14 additions and 0 deletions

View File

@ -194,5 +194,18 @@ if (not %condition) %body
g\def [[do %action]], (vars)=> return vars.action(self,vars)
g\defmacro [[lua %lua_code]], (vars,helpers,ftype)=>
with helpers
lua_code = vars.lua_code.value
switch lua_code.type
when "List"
.lua table.concat[i.value.value for i in *lua_code.value]
else
.lua(lua_code.value)
return nil
g\defmacro [[macro %spec %body]], (vars,helpers,ftype)=>
self\simplemacro vars.spec.value.value, vars.body.value.value.src
return g

View File

@ -187,6 +187,7 @@ class Game
return invocations, arg_names
defmacro: (spec, fn)=>
assert fn, "No function supplied"
invocations,arg_names = self\get_invocations spec
for invocation in *invocations
@macros[invocation] = {fn, arg_names}