Updated to use return values better.
This commit is contained in:
parent
f8f5e7b653
commit
6225462a1c
8
core.nom
8
core.nom
@ -352,10 +352,14 @@ rule "forbid %blacklist to use %fn":
|
|||||||
|
|
||||||
# Error functions
|
# Error functions
|
||||||
rule "error!":
|
rule "error!":
|
||||||
lua block "compiler:error()"
|
lua block ".."
|
||||||
|
|table.remove(compiler.callstack)
|
||||||
|
|compiler:error()
|
||||||
|
|
||||||
rule "error %msg":
|
rule "error %msg":
|
||||||
lua block "compiler:error(vars.msg)"
|
lua block ".."
|
||||||
|
|table.remove(compiler.callstack)
|
||||||
|
|compiler:error(vars.msg)
|
||||||
|
|
||||||
macro block "test %code yields %expected":
|
macro block "test %code yields %expected":
|
||||||
let "generated" = (lua expr "utils.repr(compiler:stringify_tree(vars.code.value.value), true)")
|
let "generated" = (lua expr "utils.repr(compiler:stringify_tree(vars.code.value.value), true)")
|
||||||
|
37
nomsu.lua
37
nomsu.lua
@ -249,11 +249,11 @@ do
|
|||||||
if self.debug then
|
if self.debug then
|
||||||
print("RUNNING TEXT:\n" .. tostring(text))
|
print("RUNNING TEXT:\n" .. tostring(text))
|
||||||
end
|
end
|
||||||
local code = self:compile(text)
|
local code, retval = self:compile(text)
|
||||||
if self.debug then
|
if self.debug then
|
||||||
print("\nGENERATED LUA CODE:\n" .. tostring(code))
|
print("\nGENERATED LUA CODE:\n" .. tostring(code))
|
||||||
end
|
end
|
||||||
return code
|
return retval
|
||||||
end,
|
end,
|
||||||
parse = function(self, str)
|
parse = function(self, str)
|
||||||
if self.debug then
|
if self.debug then
|
||||||
@ -341,6 +341,7 @@ do
|
|||||||
assert(tree, "No tree provided.")
|
assert(tree, "No tree provided.")
|
||||||
local indent = ""
|
local indent = ""
|
||||||
local buffer = { }
|
local buffer = { }
|
||||||
|
local return_value = nil
|
||||||
local to_lua
|
local to_lua
|
||||||
to_lua = function(t, kind)
|
to_lua = function(t, kind)
|
||||||
local ret = self:tree_to_lua(t, kind)
|
local ret = self:tree_to_lua(t, kind)
|
||||||
@ -358,20 +359,20 @@ do
|
|||||||
local _list_0 = tree.value.body.value
|
local _list_0 = tree.value.body.value
|
||||||
for _index_0 = 1, #_list_0 do
|
for _index_0 = 1, #_list_0 do
|
||||||
local statement = _list_0[_index_0]
|
local statement = _list_0[_index_0]
|
||||||
local code = to_lua(statement)
|
local code = to_lua(statement, "Statement")
|
||||||
local lua_thunk, err = load("\n local utils = require('utils')\n return (function(compiler, vars)\n" .. tostring(code) .. "\nend)")
|
local lua_thunk, err = load("\n local utils = require('utils')\n return (function(compiler, vars)\n" .. tostring(code) .. "\nend)")
|
||||||
if not lua_thunk then
|
if not lua_thunk then
|
||||||
error("Failed to compile generated code:\n" .. tostring(code) .. "\n\n" .. tostring(err) .. "\n\nProduced by statement:\n" .. tostring(utils.repr(statement)))
|
error("Failed to compile generated code:\n" .. tostring(code) .. "\n\n" .. tostring(err) .. "\n\nProduced by statement:\n" .. tostring(utils.repr(statement)))
|
||||||
end
|
end
|
||||||
local ok
|
local ok, value = pcall(lua_thunk)
|
||||||
ok, err = pcall(lua_thunk)
|
|
||||||
if not ok then
|
if not ok then
|
||||||
error(err)
|
error(value)
|
||||||
end
|
end
|
||||||
ok, err = pcall(err, self, vars)
|
ok, value = pcall(value, self, vars)
|
||||||
if not ok then
|
if not ok then
|
||||||
self:error(err)
|
error()
|
||||||
end
|
end
|
||||||
|
return_value = value
|
||||||
add(code)
|
add(code)
|
||||||
end
|
end
|
||||||
add([[ return ret
|
add([[ return ret
|
||||||
@ -496,7 +497,7 @@ do
|
|||||||
error("Unknown/unimplemented thingy: " .. tostring(tree.type))
|
error("Unknown/unimplemented thingy: " .. tostring(tree.type))
|
||||||
end
|
end
|
||||||
buffer = table.concat(buffer, "\n")
|
buffer = table.concat(buffer, "\n")
|
||||||
return buffer
|
return buffer, return_value
|
||||||
end,
|
end,
|
||||||
fn_name_from_tree = function(self, tree)
|
fn_name_from_tree = function(self, tree)
|
||||||
assert(tree.type == "FunctionCall", "Attempt to get fn name from non-functioncall tree: " .. tostring(tree.type))
|
assert(tree.type == "FunctionCall", "Attempt to get fn name from non-functioncall tree: " .. tostring(tree.type))
|
||||||
@ -663,12 +664,12 @@ do
|
|||||||
end
|
end
|
||||||
local tree = self:parse(src)
|
local tree = self:parse(src)
|
||||||
assert(tree, "Tree failed to compile: " .. tostring(src))
|
assert(tree, "Tree failed to compile: " .. tostring(src))
|
||||||
local code = self:tree_to_lua(tree)
|
local code, retval = self:tree_to_lua(tree)
|
||||||
if output_file then
|
if output_file then
|
||||||
local output = io.open(output_file, "w")
|
local output = io.open(output_file, "w")
|
||||||
output:write(code)
|
output:write(code)
|
||||||
end
|
end
|
||||||
return code
|
return code, retval
|
||||||
end,
|
end,
|
||||||
error = function(self, ...)
|
error = function(self, ...)
|
||||||
print(...)
|
print(...)
|
||||||
@ -676,6 +677,8 @@ do
|
|||||||
for i = #self.callstack, 1, -1 do
|
for i = #self.callstack, 1, -1 do
|
||||||
print(" " .. tostring(self.callstack[i]))
|
print(" " .. tostring(self.callstack[i]))
|
||||||
end
|
end
|
||||||
|
print(" <top level>")
|
||||||
|
self.callstack = { }
|
||||||
return error()
|
return error()
|
||||||
end,
|
end,
|
||||||
test = function(self, src, expected)
|
test = function(self, src, expected)
|
||||||
@ -836,7 +839,7 @@ if arg and arg[1] then
|
|||||||
nop = function() end
|
nop = function() end
|
||||||
print, io.write = nop, nop
|
print, io.write = nop, nop
|
||||||
end
|
end
|
||||||
local code = c:run(input)
|
local code, retval = c:compile(input)
|
||||||
if arg[2] then
|
if arg[2] then
|
||||||
local output
|
local output
|
||||||
if arg[2] == "-" then
|
if arg[2] == "-" then
|
||||||
@ -853,11 +856,12 @@ if arg and arg[1] then
|
|||||||
end
|
end
|
||||||
local NomsuCompiler = require('nomsu')
|
local NomsuCompiler = require('nomsu')
|
||||||
local c = NomsuCompiler()
|
local c = NomsuCompiler()
|
||||||
load()(c, {})
|
return load()(c, {})
|
||||||
]])
|
]])
|
||||||
end
|
end
|
||||||
elseif arg then
|
elseif arg then
|
||||||
local c = NomsuCompiler()
|
local c = NomsuCompiler()
|
||||||
|
c:run('run file "core.nom"')
|
||||||
while true do
|
while true do
|
||||||
local buff = ""
|
local buff = ""
|
||||||
while true do
|
while true do
|
||||||
@ -871,7 +875,12 @@ elseif arg then
|
|||||||
if #buff == 0 then
|
if #buff == 0 then
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
c:run(buff)
|
local ok, ret = pcall(function()
|
||||||
|
return c:run(buff)
|
||||||
|
end)
|
||||||
|
if ok and ret ~= nil then
|
||||||
|
print("= " .. utils.repr(ret, true))
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
return NomsuCompiler
|
return NomsuCompiler
|
||||||
|
33
nomsu.moon
33
nomsu.moon
@ -158,10 +158,10 @@ class NomsuCompiler
|
|||||||
if @debug
|
if @debug
|
||||||
print "RUNNING TEXT:\n#{text}"
|
print "RUNNING TEXT:\n#{text}"
|
||||||
-- This will execute each chunk as it goes along
|
-- This will execute each chunk as it goes along
|
||||||
code = @compile(text)
|
code, retval = @compile(text)
|
||||||
if @debug
|
if @debug
|
||||||
print "\nGENERATED LUA CODE:\n#{code}"
|
print "\nGENERATED LUA CODE:\n#{code}"
|
||||||
return code
|
return retval
|
||||||
|
|
||||||
parse: (str)=>
|
parse: (str)=>
|
||||||
if @debug
|
if @debug
|
||||||
@ -248,6 +248,7 @@ class NomsuCompiler
|
|||||||
assert tree, "No tree provided."
|
assert tree, "No tree provided."
|
||||||
indent = ""
|
indent = ""
|
||||||
buffer = {}
|
buffer = {}
|
||||||
|
return_value = nil
|
||||||
|
|
||||||
to_lua = (t,kind)->
|
to_lua = (t,kind)->
|
||||||
ret = @tree_to_lua(t,kind)
|
ret = @tree_to_lua(t,kind)
|
||||||
@ -261,7 +262,7 @@ class NomsuCompiler
|
|||||||
local ret]]
|
local ret]]
|
||||||
vars = {}
|
vars = {}
|
||||||
for statement in *tree.value.body.value
|
for statement in *tree.value.body.value
|
||||||
code = to_lua(statement)
|
code = to_lua(statement, "Statement")
|
||||||
-- Run the fuckers as we go
|
-- Run the fuckers as we go
|
||||||
-- TODO: clean up repeated loading of utils?
|
-- TODO: clean up repeated loading of utils?
|
||||||
lua_thunk, err = load("
|
lua_thunk, err = load("
|
||||||
@ -269,10 +270,11 @@ class NomsuCompiler
|
|||||||
return (function(compiler, vars)\n#{code}\nend)")
|
return (function(compiler, vars)\n#{code}\nend)")
|
||||||
if not lua_thunk
|
if not lua_thunk
|
||||||
error("Failed to compile generated code:\n#{code}\n\n#{err}\n\nProduced by statement:\n#{utils.repr(statement)}")
|
error("Failed to compile generated code:\n#{code}\n\n#{err}\n\nProduced by statement:\n#{utils.repr(statement)}")
|
||||||
ok,err = pcall(lua_thunk)
|
ok,value = pcall(lua_thunk)
|
||||||
if not ok then error(err)
|
if not ok then error(value)
|
||||||
ok,err = pcall(err, self, vars)
|
ok,value = pcall(value, self, vars)
|
||||||
if not ok then @error(err)
|
if not ok then error!
|
||||||
|
return_value = value
|
||||||
add code
|
add code
|
||||||
add [[
|
add [[
|
||||||
return ret
|
return ret
|
||||||
@ -365,7 +367,7 @@ class NomsuCompiler
|
|||||||
|
|
||||||
-- TODO: make indentation clean
|
-- TODO: make indentation clean
|
||||||
buffer = table.concat(buffer, "\n")
|
buffer = table.concat(buffer, "\n")
|
||||||
return buffer
|
return buffer, return_value
|
||||||
|
|
||||||
@comma_separated_items: (open, items, close)=>
|
@comma_separated_items: (open, items, close)=>
|
||||||
utils.accumulate "\n", ->
|
utils.accumulate "\n", ->
|
||||||
@ -483,17 +485,19 @@ class NomsuCompiler
|
|||||||
print "COMPILING:\n#{src}"
|
print "COMPILING:\n#{src}"
|
||||||
tree = @parse(src)
|
tree = @parse(src)
|
||||||
assert tree, "Tree failed to compile: #{src}"
|
assert tree, "Tree failed to compile: #{src}"
|
||||||
code = @tree_to_lua(tree)
|
code, retval = @tree_to_lua(tree)
|
||||||
if output_file
|
if output_file
|
||||||
output = io.open(output_file, "w")
|
output = io.open(output_file, "w")
|
||||||
output\write(code)
|
output\write(code)
|
||||||
return code
|
return code, retval
|
||||||
|
|
||||||
error: (...)=>
|
error: (...)=>
|
||||||
print(...)
|
print(...)
|
||||||
print("Callstack:")
|
print("Callstack:")
|
||||||
for i=#@callstack,1,-1
|
for i=#@callstack,1,-1
|
||||||
print " #{@callstack[i]}"
|
print " #{@callstack[i]}"
|
||||||
|
print " <top level>"
|
||||||
|
@callstack = {}
|
||||||
error!
|
error!
|
||||||
|
|
||||||
test: (src, expected)=>
|
test: (src, expected)=>
|
||||||
@ -583,7 +587,7 @@ if arg and arg[1]
|
|||||||
export print
|
export print
|
||||||
nop = ->
|
nop = ->
|
||||||
print, io.write = nop, nop
|
print, io.write = nop, nop
|
||||||
code = c\run(input)
|
code, retval = c\compile(input)
|
||||||
if arg[2]
|
if arg[2]
|
||||||
output = if arg[2] == "-"
|
output = if arg[2] == "-"
|
||||||
export print
|
export print
|
||||||
@ -601,11 +605,12 @@ if arg and arg[1]
|
|||||||
end
|
end
|
||||||
local NomsuCompiler = require('nomsu')
|
local NomsuCompiler = require('nomsu')
|
||||||
local c = NomsuCompiler()
|
local c = NomsuCompiler()
|
||||||
load()(c, {})
|
return load()(c, {})
|
||||||
]]
|
]]
|
||||||
elseif arg
|
elseif arg
|
||||||
-- REPL:
|
-- REPL:
|
||||||
c = NomsuCompiler()
|
c = NomsuCompiler()
|
||||||
|
c\run('run file "core.nom"')
|
||||||
while true
|
while true
|
||||||
buff = ""
|
buff = ""
|
||||||
while true
|
while true
|
||||||
@ -616,6 +621,8 @@ elseif arg
|
|||||||
buff ..= line
|
buff ..= line
|
||||||
if #buff == 0
|
if #buff == 0
|
||||||
break
|
break
|
||||||
c\run(buff)
|
ok, ret = pcall(-> c\run(buff))
|
||||||
|
if ok and ret != nil
|
||||||
|
print "= "..utils.repr(ret, true)
|
||||||
|
|
||||||
return NomsuCompiler
|
return NomsuCompiler
|
||||||
|
Loading…
Reference in New Issue
Block a user