Removed some debugging, cleaned up.
This commit is contained in:
parent
ea69b18198
commit
86c0fd47eb
15
core.moon
15
core.moon
@ -11,6 +11,9 @@ g\def [[printf %str]], (args)=>
|
|||||||
for s in *args.str do io.write(utils.repr(s))
|
for s in *args.str do io.write(utils.repr(s))
|
||||||
io.write("\n")
|
io.write("\n")
|
||||||
|
|
||||||
|
g\def [[quote %str]], (vars)=>
|
||||||
|
return utils.repr(vars.str, true)
|
||||||
|
|
||||||
g\defmacro "return %retval", (vars,helpers,ftype)=>
|
g\defmacro "return %retval", (vars,helpers,ftype)=>
|
||||||
with helpers
|
with helpers
|
||||||
switch ftype
|
switch ftype
|
||||||
@ -25,7 +28,7 @@ g\defmacro "return %retval", (vars,helpers,ftype)=>
|
|||||||
g\defmacro "let %varname = %value", (vars, helpers, ftype)=>
|
g\defmacro "let %varname = %value", (vars, helpers, ftype)=>
|
||||||
with helpers
|
with helpers
|
||||||
if ftype == "Expression" then error("Cannot set a variable in an expression.")
|
if ftype == "Expression" then error("Cannot set a variable in an expression.")
|
||||||
.lua "vars[#{.ded(.transform(vars.varname))} = #{.ded(.transform(vars.value))}"
|
.lua "vars[#{.ded(.transform(vars.varname))}] = #{.ded(.transform(vars.value))}"
|
||||||
return nil
|
return nil
|
||||||
|
|
||||||
singleton = (aliases, value)->
|
singleton = (aliases, value)->
|
||||||
@ -188,11 +191,15 @@ g\def [[do %action]], (vars)=> return vars.action(self,vars)
|
|||||||
g\defmacro [[lua %lua_code]], (vars,helpers,ftype)=>
|
g\defmacro [[lua %lua_code]], (vars,helpers,ftype)=>
|
||||||
with helpers
|
with helpers
|
||||||
lua_code = vars.lua_code.value
|
lua_code = vars.lua_code.value
|
||||||
|
escapes = n:"\n", t:"\t", b:"\b", a:"\a", v:"\v", f:"\f", r:"\r"
|
||||||
|
unescape = (s)-> s\gsub("\\(.)", ((c)-> escapes[c] or c))
|
||||||
switch lua_code.type
|
switch lua_code.type
|
||||||
when "List"
|
when "List"
|
||||||
.lua table.concat[i.value.value for i in *lua_code.value]
|
-- TODO: handle subexpressions
|
||||||
else
|
.lua table.concat[unescape(i.value.value) for i in *lua_code.value]
|
||||||
.lua(lua_code.value)
|
when "String"
|
||||||
|
.lua(unescape(lua_code.value))
|
||||||
|
else error("Unknown type: #{lua_code.type}")
|
||||||
return nil
|
return nil
|
||||||
|
|
||||||
g\defmacro [[macro %spec %body]], (vars,helpers,ftype)=>
|
g\defmacro [[macro %spec %body]], (vars,helpers,ftype)=>
|
||||||
|
10
game2.moon
10
game2.moon
@ -247,3 +247,13 @@ if (1 == 1):
|
|||||||
unless (1 > 2):
|
unless (1 > 2):
|
||||||
say "This one too!"
|
say "This one too!"
|
||||||
]]
|
]]
|
||||||
|
|
||||||
|
g\simplemacro [[smet %varname = %value]],[[
|
||||||
|
lua ["vars[\"", %varname, "\"] = ", %value]
|
||||||
|
lua ["vars[\"", %varname, "\"] = 2*vars[\"", %varname, "\"]"]
|
||||||
|
]]
|
||||||
|
|
||||||
|
g\run[[
|
||||||
|
smet "fnord" = 23
|
||||||
|
say %fnord
|
||||||
|
]]
|
||||||
|
23
nomic.moon
23
nomic.moon
@ -60,7 +60,7 @@ add_indent_tokens = (str)->
|
|||||||
indentflagger = [=[
|
indentflagger = [=[
|
||||||
file <- line*
|
file <- line*
|
||||||
line <- ((string / [^%linebreak])* %linebreak) -> process_line
|
line <- ((string / [^%linebreak])* %linebreak) -> process_line
|
||||||
string <- '"' (("\\" .) / [^"])* '"'
|
string <- '"' (("\" .) / [^"])* '"'
|
||||||
]=]
|
]=]
|
||||||
indentflagger = re.compile indentflagger, defs
|
indentflagger = re.compile indentflagger, defs
|
||||||
indentflagger\match(str.."\n")
|
indentflagger\match(str.."\n")
|
||||||
@ -100,7 +100,7 @@ lingo = [=[
|
|||||||
word <- ({ !number {%wordchar+} }) -> Word
|
word <- ({ !number {%wordchar+} }) -> Word
|
||||||
expression <- ({ (string / number / variable / list / thunk / subexpression) }) -> Expression
|
expression <- ({ (string / number / variable / list / thunk / subexpression) }) -> Expression
|
||||||
|
|
||||||
string <- ({ '"' {(("\\" .) / [^"])*} '"' }) -> String
|
string <- ({ '"' {(("\" .) / [^"])*} '"' }) -> String
|
||||||
number <- ({ {'-'? [0-9]+ ("." [0-9]+)?} }) -> Number
|
number <- ({ {'-'? [0-9]+ ("." [0-9]+)?} }) -> Number
|
||||||
variable <- ({ ("%" {%wordchar+}) }) -> Var
|
variable <- ({ ("%" {%wordchar+}) }) -> Var
|
||||||
|
|
||||||
@ -197,7 +197,7 @@ class Game
|
|||||||
replace_grammar = [[
|
replace_grammar = [[
|
||||||
stuff <- {~ (var / string / .)+ ~}
|
stuff <- {~ (var / string / .)+ ~}
|
||||||
var <- ("%" {%wordchar+}) -> replacer
|
var <- ("%" {%wordchar+}) -> replacer
|
||||||
string <- '"' (("\\" .) / [^"])* '"'
|
string <- '"' (("\" .) / [^"])* '"'
|
||||||
]]
|
]]
|
||||||
replacement = add_indent_tokens replacement
|
replacement = add_indent_tokens replacement
|
||||||
fn = (vars, helpers, ftype)=>
|
fn = (vars, helpers, ftype)=>
|
||||||
@ -206,11 +206,14 @@ class Game
|
|||||||
return ret
|
return ret
|
||||||
replacement_grammar = re.compile(replace_grammar, {:wordchar, :replacer})
|
replacement_grammar = re.compile(replace_grammar, {:wordchar, :replacer})
|
||||||
replaced = replacement_grammar\match(replacement)
|
replaced = replacement_grammar\match(replacement)
|
||||||
tree = lingo\match (replaced)
|
tree = lingo\match replaced
|
||||||
if not tree
|
if tree.value.errors and #tree.value.errors.value > 0
|
||||||
error "Couldn't match:\n#{replaced}"
|
ret = helpers.transform(tree.value.errors)
|
||||||
helpers.lua(helpers.transform(tree.value.body))
|
return ret
|
||||||
return code
|
result = helpers.transform(tree.value.body)
|
||||||
|
helpers.lua(result)
|
||||||
|
return
|
||||||
|
|
||||||
self\defmacro spec, fn
|
self\defmacro spec, fn
|
||||||
|
|
||||||
run: (text)=>
|
run: (text)=>
|
||||||
@ -352,7 +355,9 @@ class Game
|
|||||||
comma_separated_items("game:call(", args, ")")
|
comma_separated_items("game:call(", args, ")")
|
||||||
|
|
||||||
when "String"
|
when "String"
|
||||||
lua utils.repr(tree.value, true)
|
escapes = n:"\n", t:"\t", b:"\b", a:"\a", v:"\v", f:"\f", r:"\r"
|
||||||
|
unescaped = tree.value\gsub("\\(.)", ((c)-> escapes[c] or c))
|
||||||
|
lua utils.repr(unescaped, true)
|
||||||
|
|
||||||
when "Number"
|
when "Number"
|
||||||
lua tree.value
|
lua tree.value
|
||||||
|
Loading…
Reference in New Issue
Block a user