Slightly cleaned up macros.
This commit is contained in:
parent
039c620df2
commit
ea69b18198
22
core.moon
22
core.moon
@ -30,10 +30,8 @@ g\defmacro "let %varname = %value", (vars, helpers, ftype)=>
|
|||||||
|
|
||||||
singleton = (aliases, value)->
|
singleton = (aliases, value)->
|
||||||
g\defmacro aliases, (vars,helpers,ftype)=>
|
g\defmacro aliases, (vars,helpers,ftype)=>
|
||||||
if ftype == "Expression"
|
if ftype == "Expression" then helpers.lua(value)
|
||||||
helpers.lua(value)
|
else helpers.lua("ret = #{value}")
|
||||||
else
|
|
||||||
helpers.lua("ret = #{value}")
|
|
||||||
|
|
||||||
infix = (ops)->
|
infix = (ops)->
|
||||||
for op in *ops
|
for op in *ops
|
||||||
@ -41,23 +39,15 @@ infix = (ops)->
|
|||||||
if type(op) == 'table'
|
if type(op) == 'table'
|
||||||
{alias,op} = op
|
{alias,op} = op
|
||||||
g\defmacro "%x #{op} %y", (vars,helpers,ftype)=>
|
g\defmacro "%x #{op} %y", (vars,helpers,ftype)=>
|
||||||
if ftype == "Statement"
|
|
||||||
helpers.lua("ret = (#{helpers.var('x')} #{op} #{helpers.var('y')})")
|
|
||||||
elseif ftype == "Expression"
|
|
||||||
helpers.lua("(#{helpers.var('x')} #{op} #{helpers.var('y')})")
|
helpers.lua("(#{helpers.var('x')} #{op} #{helpers.var('y')})")
|
||||||
else error("Unknown: #{ftype}")
|
|
||||||
unary = (ops)->
|
unary = (ops)->
|
||||||
for op in *ops
|
for op in *ops
|
||||||
g\defmacro "#{op} %x", (vars,helpers,ftype)=>
|
g\defmacro "#{op} %x", (vars,helpers,ftype)=>
|
||||||
if ftype == "Statement"
|
|
||||||
helpers.lua("ret = #{op}(#{helpers.var('x')})")
|
|
||||||
elseif ftype == "Expression"
|
|
||||||
helpers.lua("#{op}(#{helpers.var('x')})")
|
helpers.lua("#{op}(#{helpers.var('x')})")
|
||||||
else error("Unknown: #{ftype}")
|
|
||||||
|
|
||||||
singleton {"true","yes"}, "true"
|
singleton {"true","yes"}, "true"
|
||||||
singleton {"false","no"}, "false"
|
singleton {"false","no"}, "false"
|
||||||
singleton {"nil","null"}, "nil"
|
singleton {"nil","null","nop","pass"}, "nil"
|
||||||
infix{"+","-","*","/","==",{"!=","~="},"<","<=",">",">=","^","and","or"}
|
infix{"+","-","*","/","==",{"!=","~="},"<","<=",">",">=","^","and","or"}
|
||||||
unary{"-","#","not"}
|
unary{"-","#","not"}
|
||||||
g\def [[%x == %y]], (args)=> utils.equivalent(args.x, args.y)
|
g\def [[%x == %y]], (args)=> utils.equivalent(args.x, args.y)
|
||||||
@ -185,12 +175,13 @@ g\defmacro "for %varname in %iterable %body", (vars,helpers,ftype)=>
|
|||||||
|
|
||||||
g\simplemacro "if %condition %body", [[
|
g\simplemacro "if %condition %body", [[
|
||||||
if %condition %body
|
if %condition %body
|
||||||
..else: nil
|
..else: pass
|
||||||
]]
|
]]
|
||||||
|
|
||||||
g\simplemacro "unless %condition %body", [[
|
g\simplemacro "unless %condition %body", [[
|
||||||
if (not %condition) %body
|
if (not %condition) %body
|
||||||
..else: nil]]
|
..else: pass
|
||||||
|
]]
|
||||||
|
|
||||||
g\def [[do %action]], (vars)=> return vars.action(self,vars)
|
g\def [[do %action]], (vars)=> return vars.action(self,vars)
|
||||||
|
|
||||||
@ -207,5 +198,4 @@ g\defmacro [[lua %lua_code]], (vars,helpers,ftype)=>
|
|||||||
g\defmacro [[macro %spec %body]], (vars,helpers,ftype)=>
|
g\defmacro [[macro %spec %body]], (vars,helpers,ftype)=>
|
||||||
self\simplemacro vars.spec.value.value, vars.body.value.value.src
|
self\simplemacro vars.spec.value.value, vars.body.value.value.src
|
||||||
|
|
||||||
|
|
||||||
return g
|
return g
|
||||||
|
@ -190,9 +190,12 @@ rule "do %thing also %also-thing":
|
|||||||
do %thing
|
do %thing
|
||||||
do %also-thing
|
do %also-thing
|
||||||
return 99
|
return 99
|
||||||
|
]]
|
||||||
|
g\run[[
|
||||||
do: say "one liner"
|
do: say "one liner"
|
||||||
..also: say "another one liner"
|
..also: say "another one liner"
|
||||||
|
]]
|
||||||
|
g\run[[
|
||||||
|
|
||||||
say (..)
|
say (..)
|
||||||
do:
|
do:
|
||||||
@ -200,6 +203,8 @@ say (..)
|
|||||||
return 5
|
return 5
|
||||||
say "bye"
|
say "bye"
|
||||||
|
|
||||||
|
]]
|
||||||
|
g\run[[
|
||||||
say (do: return "wow")
|
say (do: return "wow")
|
||||||
if 1: say "hi1" ..else: say "bye1"
|
if 1: say "hi1" ..else: say "bye1"
|
||||||
|
|
||||||
|
22
nomic.moon
22
nomic.moon
@ -79,6 +79,7 @@ lingo = [=[
|
|||||||
(({ {|
|
(({ {|
|
||||||
(expression (%word_boundary fn_bit)+) / (word (%word_boundary fn_bit)*)
|
(expression (%word_boundary fn_bit)+) / (word (%word_boundary fn_bit)*)
|
||||||
|} }) -> FunctionCall)
|
|} }) -> FunctionCall)
|
||||||
|
/ (expression)
|
||||||
}) -> Statement)
|
}) -> Statement)
|
||||||
|} }) -> Block
|
|} }) -> Block
|
||||||
|
|
||||||
@ -222,7 +223,7 @@ class Game
|
|||||||
print(code)
|
print(code)
|
||||||
lua_thunk, err = loadstring(code)
|
lua_thunk, err = loadstring(code)
|
||||||
if not lua_thunk
|
if not lua_thunk
|
||||||
error("Failed to compile generated code:\n#{code}")
|
error("Failed to compile generated code:\n#{code}\n\n#{err}")
|
||||||
action = lua_thunk!
|
action = lua_thunk!
|
||||||
if @debug
|
if @debug
|
||||||
print("Running...")
|
print("Running...")
|
||||||
@ -299,7 +300,7 @@ class Game
|
|||||||
|
|
||||||
when "Errors"
|
when "Errors"
|
||||||
-- TODO: Better error reporting via tree.src
|
-- TODO: Better error reporting via tree.src
|
||||||
error("\nParse error on: #{tree.value}")
|
error("\nParse error on: #{utils.repr(tree.value\match("[^\n]*"), true)}")
|
||||||
|
|
||||||
when "Block"
|
when "Block"
|
||||||
for chunk in *tree.value
|
for chunk in *tree.value
|
||||||
@ -317,14 +318,19 @@ class Game
|
|||||||
lua "end)"
|
lua "end)"
|
||||||
|
|
||||||
when "Statement"
|
when "Statement"
|
||||||
ret = transform(tree.value)
|
if tree.value.type == "FunctionCall"
|
||||||
|
name_bits = {}
|
||||||
|
for token in *tree.value.value
|
||||||
|
table.insert name_bits, if token.type == "Word" then token.value else "%"
|
||||||
|
name = table.concat(name_bits, " ")
|
||||||
|
if @macros[name]
|
||||||
|
lua transform(tree.value)
|
||||||
|
ret = table.concat ret_lines, "\n"
|
||||||
return ret
|
return ret
|
||||||
|
lua "ret = #{ded(transform(tree.value))}"
|
||||||
|
|
||||||
when "Expression"
|
when "Expression"
|
||||||
ret = transform(tree.value)
|
lua transform(tree.value)
|
||||||
if parent.type == "Statement"
|
|
||||||
ret = "ret = "..ded(ret)
|
|
||||||
return ret
|
|
||||||
|
|
||||||
when "FunctionCall"
|
when "FunctionCall"
|
||||||
name_bits = {}
|
name_bits = {}
|
||||||
@ -341,8 +347,6 @@ class Game
|
|||||||
m = fn(self, args, helpers, parent.type)
|
m = fn(self, args, helpers, parent.type)
|
||||||
if m != nil then return m
|
if m != nil then return m
|
||||||
else
|
else
|
||||||
if parent.type == "Statement"
|
|
||||||
lua "ret ="
|
|
||||||
args = [ded(transform(a)) for a in *tree.value when a.type != "Word"]
|
args = [ded(transform(a)) for a in *tree.value when a.type != "Word"]
|
||||||
table.insert args, 1, utils.repr(name, true)
|
table.insert args, 1, utils.repr(name, true)
|
||||||
comma_separated_items("game:call(", args, ")")
|
comma_separated_items("game:call(", args, ")")
|
||||||
|
Loading…
Reference in New Issue
Block a user