Moved core into lib/ and recompiled.

This commit is contained in:
Bruce Hill 2017-09-19 00:30:47 -07:00
parent 0ee5b58882
commit 3b10a60826
5 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
run file "core.nom"
run file "lib/core.nom"
test: say "foo" ..yields ".."
|Call [say %]:

View File

@ -3,7 +3,7 @@
start with a #.. and
continue until dedent
run file "core.nom"
run file "lib/core.nom"
say "foo"

View File

@ -1,4 +1,4 @@
run file "core.nom"
run file "lib/core.nom"
run file "lib/secrets.nom"
run file "lib/plurals.nom"

View File

@ -576,7 +576,7 @@ do
elseif "Var" == _exp_0 then
add("vars[" .. tostring(utils.repr(tree.value, true)) .. "]")
else
error("Unknown/unimplemented thingy: " .. tostring(tree.type))
self:error("Unknown/unimplemented thingy: " .. tostring(tree.type))
end
buffer = table.concat(buffer, "\n")
return buffer, return_value