Bunch of miscellaneous changes. Paved the way a little bit for having

different compiler domains.
This commit is contained in:
Bruce Hill 2018-08-27 13:38:58 -07:00
parent c6a7b0be9e
commit 930d522fbc
19 changed files with 227 additions and 144 deletions

View File

@ -46,7 +46,7 @@ All `.moon` files have been precompiled into corresponding `.lua` files, so you
* `nomsu` - A shell script that selects between different installed versions of Nomsu (using the `-V` flag). You can use this script to, for example, run `nomsu -V 1.2 your_script.nom` to run with the latest version of Nomsu that matches `1.2.?.?`. All flags and arguments are passed along to whichever Nomsu compiler is chosen. * `nomsu` - A shell script that selects between different installed versions of Nomsu (using the `-V` flag). You can use this script to, for example, run `nomsu -V 1.2 your_script.nom` to run with the latest version of Nomsu that matches `1.2.?.?`. All flags and arguments are passed along to whichever Nomsu compiler is chosen.
* `nomsu.moon` - The source code for the Nomsu command line runner. This handles launching the compiler and running the REPL. * `nomsu.moon` - The source code for the Nomsu command line runner. This handles launching the compiler and running the REPL.
* `nomsu.peg` - The [Parsing Expression Grammar](https://en.wikipedia.org/wiki/Parsing_expression_grammar) used to define Nomsu's syntax. The format of this file is a slightly modified version of the format accepted by LPEG's `re` module. * `nomsu.*.peg` - The [Parsing Expression Grammar](https://en.wikipedia.org/wiki/Parsing_expression_grammar) used to define each version of Nomsu's syntax. The format of this file is a slightly modified version of the format accepted by LPEG's `re` module.
* `nomsu_compiler.moon` - **The actual Nomsu compiler**. This file can be imported and used without going through the regular command line interface (e.g. for applications that want to embed the compiler). * `nomsu_compiler.moon` - **The actual Nomsu compiler**. This file can be imported and used without going through the regular command line interface (e.g. for applications that want to embed the compiler).
* `parser.moon` - The Nomsu parser. This file can also be imported and used directly for applications that only need to *parse* Nomsu, not compile it. * `parser.moon` - The Nomsu parser. This file can also be imported and used directly for applications that only need to *parse* Nomsu, not compile it.
* `syntax_tree.moon` - Datastructures used for Nomsu Abstract Syntax Trees. * `syntax_tree.moon` - Datastructures used for Nomsu Abstract Syntax Trees.

View File

@ -132,13 +132,13 @@ do
_continue_0 = true _continue_0 = true
break break
end end
bits[#bits + 1] = b
if b.is_code then if b.is_code then
b.dirty = error b.dirty = error
end end
if type(b) ~= 'string' and not (type(b) == 'table' and b.is_code) then if type(b) ~= 'string' and not (type(b) == 'table' and b.is_code) then
b = repr(b) b = repr(b)
end end
bits[#bits + 1] = b
_continue_0 = true _continue_0 = true
until true until true
if not _continue_0 then if not _continue_0 then
@ -210,10 +210,13 @@ do
end end
for i = 1, n do for i = 1, n do
local b = select(i, ...) local b = select(i, ...)
bits[i] = b
if b.is_code then if b.is_code then
b.dirty = error b.dirty = error
end end
if type(b) ~= 'string' and not (type(b) == 'table' and b.is_code) then
b = repr(b)
end
bits[i] = b
end end
return self:dirty() return self:dirty()
end, end,

View File

@ -86,10 +86,10 @@ class Code
assert(b, "code bit is nil") assert(b, "code bit is nil")
assert(not Source\is_instance(b), "code bit is a Source") assert(not Source\is_instance(b), "code bit is a Source")
if b == '' then continue if b == '' then continue
bits[#bits+1] = b
b.dirty = error if b.is_code b.dirty = error if b.is_code
if type(b) != 'string' and not (type(b) == 'table' and b.is_code) if type(b) != 'string' and not (type(b) == 'table' and b.is_code)
b = repr(b) b = repr(b)
bits[#bits+1] = b
@dirty! @dirty!
trailing_line_len: => trailing_line_len: =>
@ -141,8 +141,10 @@ class Code
bits[i] = bits[i-n] bits[i] = bits[i-n]
for i=1,n for i=1,n
b = select(i, ...) b = select(i, ...)
bits[i] = b
b.dirty = error if b.is_code b.dirty = error if b.is_code
if type(b) != 'string' and not (type(b) == 'table' and b.is_code)
b = repr(b)
bits[i] = b
@dirty! @dirty!
parenthesize: => parenthesize: =>

View File

@ -55,7 +55,7 @@ upgrade %tree to "2.4" as:
add %line.2 to %values add %line.2 to %values
%action = %line.3 %action = %line.3
unless (%action is "Block" syntax tree): unless (%action is "Block" syntax tree):
%action = (=lua "Block(\%action.source, \%action)") %action = \(: %action)
add %action to %values add %action to %values
add (=lua "Action(\%values[1].source, unpack(\%values))") to %new_lines add (=lua "Action(\%values[1].source, unpack(\%values))") to %new_lines
%values = [] %values = []

View File

@ -9,7 +9,7 @@ upgrade %tree to "2" as:
if (%tree.stub is "if % % else %"): if (%tree.stub is "if % % else %"):
%true_body = (%tree.3 upgraded) %true_body = (%tree.3 upgraded)
unless (%true_body is "Block" syntax tree): unless (%true_body is "Block" syntax tree):
%true_body = (=lua "Block(\%true_body.source, \%true_body)") %true_body = \(: %true_body)
%false_body = (%tree.5 upgraded) %false_body = (%tree.5 upgraded)
unless (%false_body is "Block" syntax tree): unless (%false_body is "Block" syntax tree):
%false_body = (=lua "Block(\%false_body.source, \%false_body)") %false_body = (=lua "Block(\%false_body.source, \%false_body)")

View File

@ -191,11 +191,16 @@ test:
assume (({} with fallback % -> (% + 1)).10 == 11) assume (({} with fallback % -> (% + 1)).10 == 11)
compile [%dict with fallback %key -> %value] to (..) compile [%dict with fallback %key -> %value] to (..)
Lua value ".." Lua value ".."
setmetatable(\(%dict as lua expr), {__index=function(self, \(%key as lua expr)) (function(d)
local value = \(%value as lua expr) local mt = {}
self[\(%key as lua expr)] = value for k,v in pairs(getmetatable(d) or {}) do mt[k] = v end
return value mt.__index = function(self, \(%key as lua expr))
end}) local value = \(%value as lua expr)
self[\(%key as lua expr)] = value
return value
end
return setmetatable(d, mt)
end)(\(%dict as lua expr))
# Sorting # Sorting
test: test:

View File

@ -206,10 +206,10 @@ compile [..]
if (%body has subtree \(do next)): if (%body has subtree \(do next)):
to %lua write "\n ::continue::" to %lua write "\n ::continue::"
if (%body has subtree (\(do next %v) with vars {v:%var})): if (%body has subtree \(do next %var)):
to %lua write "\n \(compile as (===next %var ===))" to %lua write "\n \(compile as (===next %var ===))"
to %lua write "\nend --numeric for-loop" to %lua write "\nend --numeric for-loop"
if (%body has subtree (\(stop %v) with vars {v:%var})): if (%body has subtree \(stop %var)):
%lua = (..) %lua = (..)
Lua ".." Lua ".."
do -- scope for stopping for-loop do -- scope for stopping for-loop
@ -249,10 +249,10 @@ compile [for %var in %iterable %body] to:
if (%body has subtree \(do next)): if (%body has subtree \(do next)):
to %lua write "\n ::continue::" to %lua write "\n ::continue::"
if (%body has subtree (\(do next %v) with vars {v:%var})): if (%body has subtree \(do next %var)):
to %lua write (Lua "\n\(compile as (===next %var ===))") to %lua write (Lua "\n\(compile as (===next %var ===))")
to %lua write "\nend --foreach-loop" to %lua write "\nend --foreach-loop"
if (%body has subtree (\(stop %v) with vars {v:%var})): if (%body has subtree \(stop %var)):
%lua = (..) %lua = (..)
Lua ".." Lua ".."
do -- scope for stopping for-loop do -- scope for stopping for-loop
@ -290,15 +290,15 @@ compile [..]
if (%body has subtree \(do next)): if (%body has subtree \(do next)):
to %lua write "\n ::continue::" to %lua write "\n ::continue::"
if (%body has subtree (\(do next %v) with vars {v:%key})): if (%body has subtree \(do next %key)):
to %lua write (Lua "\n\(compile as (===next %key ===))") to %lua write (Lua "\n\(compile as (===next %key ===))")
if (%body has subtree (\(do next %v) with vars {v:%value})): if (%body has subtree \(do next %value)):
to %lua write (Lua "\n\(compile as (===next %value ===))") to %lua write (Lua "\n\(compile as (===next %value ===))")
to %lua write "\nend --foreach-loop" to %lua write "\nend --foreach-loop"
%stop_labels = (Lua "") %stop_labels = (Lua "")
if (%body has subtree (\(stop %v) with vars {v:%key})): if (%body has subtree \(stop %key)):
to %stop_labels write "\n\(compile as (===stop %key ===))" to %stop_labels write "\n\(compile as (===stop %key ===))"
if (%body has subtree (\(stop %v) with vars {v:%value})): if (%body has subtree \(stop %value)):
to %stop_labels write "\n\(compile as (===stop %value ===))" to %stop_labels write "\n\(compile as (===stop %value ===))"
if ((length of "\%stop_labels") > 0): if ((length of "\%stop_labels") > 0):
%lua = (..) %lua = (..)
@ -505,10 +505,10 @@ compile [for %var in recursive %structure %body] to (..)
if (%body has subtree \(do next)): if (%body has subtree \(do next)):
to %lua write "\n ::continue::" to %lua write "\n ::continue::"
if (%body has subtree (\(do next %v) with vars {v:%var})): if (%body has subtree \(do next %var)):
to %lua write "\n \(compile as (===next %var ===))" to %lua write "\n \(compile as (===next %var ===))"
to %lua write "\n end -- Recursive loop" to %lua write "\n end -- Recursive loop"
if (%body has subtree (\(stop %v) with vars {v:%var})): if (%body has subtree \(stop %var)):
to %lua write "\n \(compile as (===stop %var ===))" to %lua write "\n \(compile as (===stop %var ===))"
to %lua write "\nend -- Recursive scope" to %lua write "\nend -- Recursive scope"
return %lua return %lua

View File

@ -7,11 +7,11 @@ use "core/metaprogramming.nom"
compile [barf] to (Lua "error(nil, 0);") compile [barf] to (Lua "error(nil, 0);")
compile [barf %msg] to (Lua "error(\(%msg as lua expr), 0);") compile [barf %msg] to (Lua "error(\(%msg as lua expr), 0);")
compile [compile error at %source %msg] to (..) compile [compile error at %source %msg] to (..)
Lua "nomsu:compile_error(\(%source as lua expr), \(%msg as lua expr))" Lua "_ENV:compile_error(\(%source as lua expr), \(%msg as lua expr))"
compile [assume %condition] to: compile [assume %condition] to:
lua> ".." lua> ".."
local \%assumption = 'Assumption failed: '..tostring(nomsu:tree_to_nomsu(\%condition)) local \%assumption = 'Assumption failed: '..tostring(_ENV:tree_to_nomsu(\%condition))
return (..) return (..)
Lua ".." Lua ".."
if not \(%condition as lua expr) then if not \(%condition as lua expr) then

View File

@ -5,12 +5,12 @@
lua> "NOMSU_CORE_VERSION = 5" lua> "NOMSU_CORE_VERSION = 5"
lua> ".." lua> ".."
nomsu.COMPILE_ACTIONS["% -> %"] = function(nomsu, tree, \%args, \%body) COMPILE_ACTIONS["% -> %"] = function(nomsu, tree, \%args, \%body)
local lua = LuaCode.Value(tree.source, "(function(") local lua = LuaCode.Value(tree.source, "(function(")
if AST.is_syntax_tree(\%args, "Action") then \%args = \%args:get_args() end if AST.is_syntax_tree(\%args, "Action") then \%args = \%args:get_args() end
local lua_args = table.map(\%args, function(a) return AST.is_syntax_tree(a) and tostring(nomsu:compile(a)) or a end) local lua_args = table.map(\%args, function(a) return AST.is_syntax_tree(a) and tostring(_ENV:compile(a)) or a end)
lua:concat_append(lua_args, ", ") lua:concat_append(lua_args, ", ")
local body_lua = AST.is_syntax_tree(\%body) and nomsu:compile(\%body):as_statements("return ") or \%body local body_lua = AST.is_syntax_tree(\%body) and _ENV:compile(\%body):as_statements("return ") or \%body
body_lua:remove_free_vars(lua_args) body_lua:remove_free_vars(lua_args)
body_lua:declare_locals() body_lua:declare_locals()
lua:append(")\\n ", body_lua, "\\nend)") lua:append(")\\n ", body_lua, "\\nend)")
@ -18,9 +18,9 @@ lua> ".."
end end
lua> ".." lua> ".."
nomsu.COMPILE_ACTIONS["compile as %"] = function(nomsu, tree, \%action) COMPILE_ACTIONS["compile as %"] = function(nomsu, tree, \%action)
local lua = LuaCode.Value(tree.source, "nomsu.COMPILE_ACTIONS[", repr(\%action.stub), "](") local lua = LuaCode.Value(tree.source, "COMPILE_ACTIONS[", repr(\%action.stub), "](")
local lua_args = table.map(\%action:get_args(), function(a) return nomsu:compile(a) end) local lua_args = table.map(\%action:get_args(), function(a) return _ENV:compile(a) end)
table.insert(lua_args, 1, "nomsu") table.insert(lua_args, 1, "nomsu")
table.insert(lua_args, 2, "tree") table.insert(lua_args, 2, "tree")
lua:concat_append(lua_args, ", ") lua:concat_append(lua_args, ", ")
@ -48,22 +48,22 @@ test:
asdf asdf
assume (%tmp is (nil)) or barf "compile to is leaking variables" assume (%tmp is (nil)) or barf "compile to is leaking variables"
lua> ".." lua> ".."
nomsu.COMPILE_ACTIONS["compile % to %"] = function(nomsu, tree, \%actions, \%body) COMPILE_ACTIONS["compile % to %"] = function(nomsu, tree, \%actions, \%body)
local \%args = {"nomsu", "tree", unpack(table.map(\%actions[1]:get_args(), function(a) return tostring(nomsu:compile(\ local \%args = {"nomsu", "tree", unpack(table.map(\%actions[1]:get_args(), function(a) return tostring(_ENV:compile(\
..a)) end))} ..a)) end))}
local lua = LuaCode(tree.source, "nomsu.COMPILE_ACTIONS[", repr(\%actions[1].stub), local lua = LuaCode(tree.source, "COMPILE_ACTIONS[", repr(\%actions[1].stub),
"] = ", \(compile as (%args -> %body))) "] = ", \(compile as (%args -> %body)))
for i=2,#\%actions do for i=2,#\%actions do
local alias = \%actions[i] local alias = \%actions[i]
local \%alias_args = {"nomsu", "tree", unpack(table.map(alias:get_args(), function(a) return tostring(nomsu:compile(\ local \%alias_args = {"nomsu", "tree", unpack(table.map(alias:get_args(), function(a) return tostring(_ENV:compile(\
..a)) end))} ..a)) end))}
lua:append("\\nnomsu.COMPILE_ACTIONS[", repr(alias.stub), "] = ") lua:append("\\nCOMPILE_ACTIONS[", repr(alias.stub), "] = ")
if utils.equivalent(\%args, \%alias_args) then if utils.equivalent(\%args, \%alias_args) then
lua:append("nomsu.COMPILE_ACTIONS[", repr(\%actions[1].stub), "]") lua:append("COMPILE_ACTIONS[", repr(\%actions[1].stub), "]")
else else
lua:append("function(") lua:append("function(")
lua:concat_append(\%alias_args, ", ") lua:concat_append(\%alias_args, ", ")
lua:append(")\\n return nomsu.COMPILE_ACTIONS[", repr(\%actions[1].stub), "](") lua:append(")\\n return COMPILE_ACTIONS[", repr(\%actions[1].stub), "](")
lua:concat_append(\%args, ", ") lua:concat_append(\%args, ", ")
lua:append(")\\nend") lua:append(")\\nend")
end end
@ -75,8 +75,8 @@ lua> ".."
compile [call %fn with %args] to (..) compile [call %fn with %args] to (..)
lua> ".." lua> ".."
local lua = LuaCode.Value(tree.source, nomsu:compile(\%fn), "(") local lua = LuaCode.Value(tree.source, _ENV:compile(\%fn), "(")
lua:concat_append(table.map(\%args, function(a) return nomsu:compile(a) end), ", ") lua:concat_append(table.map(\%args, function(a) return _ENV:compile(a) end), ", ")
lua:append(")") lua:append(")")
return lua return lua
@ -95,14 +95,14 @@ test:
compile [local action %actions %body] to (..) compile [local action %actions %body] to (..)
lua> ".." lua> ".."
local fn_name = "A"..string.as_lua_id(\%actions[1].stub) local fn_name = "A"..string.as_lua_id(\%actions[1].stub)
local \%args = table.map(\%actions[1]:get_args(), function(a) return tostring(nomsu:compile(a)) end) local \%args = table.map(\%actions[1]:get_args(), function(a) return tostring(_ENV:compile(a)) end)
local lua = LuaCode(tree.source, fn_name, " = ", \(compile as (%args -> %body))) local lua = LuaCode(tree.source, fn_name, " = ", \(compile as (%args -> %body)))
lua:add_free_vars({fn_name}) lua:add_free_vars({fn_name})
for i=2,#\%actions do for i=2,#\%actions do
local alias = \%actions[i] local alias = \%actions[i]
local alias_name = "A"..string.as_lua_id(alias.stub) local alias_name = "A"..string.as_lua_id(alias.stub)
lua:add_free_vars({alias_name}) lua:add_free_vars({alias_name})
local \%alias_args = table.map(alias:get_args(), function(a) return tostring(nomsu:compile(a)) end) local \%alias_args = table.map(alias:get_args(), function(a) return tostring(_ENV:compile(a)) end)
lua:append("\\n", alias_name, " = ") lua:append("\\n", alias_name, " = ")
if utils.equivalent(\%args, \%alias_args) then if utils.equivalent(\%args, \%alias_args) then
lua:append(fn_name) lua:append(fn_name)
@ -151,7 +151,7 @@ compile [parse %actions as %body] to (..)
lua> ".." lua> ".."
local replacements = {} local replacements = {}
for i,arg in ipairs(\%actions[1]:get_args()) do for i,arg in ipairs(\%actions[1]:get_args()) do
replacements[arg[1]] = tostring(nomsu:compile(arg)) replacements[arg[1]] = tostring(_ENV:compile(arg))
end end
local function make_tree(t) local function make_tree(t)
if not AST.is_syntax_tree(t) then if not AST.is_syntax_tree(t) then
@ -168,7 +168,7 @@ compile [parse %actions as %body] to (..)
local \%new_body = LuaCode(\%body.source, local \%new_body = LuaCode(\%body.source,
"__MANGLE_INDEX = (__MANGLE_INDEX or 0) + 1", "__MANGLE_INDEX = (__MANGLE_INDEX or 0) + 1",
"\\nlocal tree = ", make_tree(\%body), "\\nlocal tree = ", make_tree(\%body),
"\\nlocal lua = nomsu:compile(tree); return lua") "\\nlocal lua = _ENV:compile(tree); return lua")
local ret = \(compile as (compile %actions to %new_body)) local ret = \(compile as (compile %actions to %new_body))
return ret return ret
@ -176,33 +176,33 @@ compile [parse %actions as %body] to (..)
action [%tree as lua expr]: action [%tree as lua expr]:
lua> ".." lua> ".."
\%tree_lua = nomsu:compile(\%tree) \%tree_lua = _ENV:compile(\%tree)
if not \%tree_lua.is_value then if not \%tree_lua.is_value then
nomsu:compile_error(\%tree.source, "Could not convert %s to a Lua expression", _ENV:compile_error(\%tree.source, "Could not convert %s to a Lua expression",
nomsu:tree_to_nomsu(\%tree)) _ENV:tree_to_nomsu(\%tree))
end end
return \%tree_lua return \%tree_lua
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
compile [%tree as lua] to (Lua value "nomsu:compile(\(%tree as lua expr))") compile [%tree as lua] to (Lua value "_ENV:compile(\(%tree as lua expr))")
compile [%tree as lua statements] to (..) compile [%tree as lua statements] to (..)
Lua value "nomsu:compile(\(%tree as lua expr)):as_statements()" Lua value "_ENV:compile(\(%tree as lua expr)):as_statements()"
compile [%tree as lua return] to (..) compile [%tree as lua return] to (..)
Lua value "nomsu:compile(\(%tree as lua expr)):as_statements('return ')" Lua value "_ENV:compile(\(%tree as lua expr)):as_statements('return ')"
compile [remove action %action] to (..) compile [remove action %action] to (..)
Lua "A\(=lua "string.as_lua_id(\(%action.stub))") = nil" Lua "A\(=lua "string.as_lua_id(\(%action.stub))") = nil"
test: test:
assume ("\(\(foo %x) as nomsu)" == "foo %x") or barf ".." assume ("\(\(foo \%x) as nomsu)" == "foo %x") or barf ".."
action source code failed. action source code failed.
compile [%tree as nomsu] to (..) compile [%tree as nomsu] to (..)
Lua value "nomsu:tree_to_nomsu(\(%tree as lua expr))" Lua value "_ENV:tree_to_nomsu(\(%tree as lua expr))"
compile [%tree as inline nomsu] to (..) compile [%tree as inline nomsu] to (..)
Lua value "nomsu:tree_to_nomsu(\(%tree as lua expr), true)" Lua value "_ENV:tree_to_nomsu(\(%tree as lua expr), true)"
action [%var as lua identifier, %var as lua id] (..) action [%var as lua identifier, %var as lua id] (..)
lua> ".." lua> ".."
@ -231,6 +231,14 @@ action [%tree with vars %replacements] (..)
end end
end) end)
compile [tree %tree with vars %replacements] to (..)
Lua value ".."
\(=lua "repr(\%tree)"):map(function(t)
if t.type == "Var" then
return \(%replacements as lua expr)[t[1]]
end
end)
compile [%tree has subtree %match_tree] to (..) compile [%tree has subtree %match_tree] to (..)
Lua value ".." Lua value ".."
(function() (function()
@ -240,6 +248,39 @@ compile [%tree has subtree %match_tree] to (..)
end end
end)() end)()
action [match %tree with %patt]:
lua> ".."
if \%patt.type == "Var" then return dict{[\%patt[1]]=\%tree} end
if \%patt.type == "Action" and \%patt.stub ~= \%tree.stub then return nil end
if #\%patt ~= #\%tree then return nil end
local matches = dict{}
for \%i=1,#\%patt do
if AST.is_syntax_tree(\%tree[\%i]) then
local submatch = \(match %tree.%i with %patt.%i)
if not submatch then return nil end
for k,v in pairs(submatch) do
if matches[k] and matches[k] ~= v then return nil end
matches[k] = v
end
end
end
return matches
action [%tree with %patt ~> %replacement]:
lua> ".."
return \%tree:map(function(\%t)
local \%vars = \(match %t with %patt)
if not \%vars then return nil end
for \%k,\%v in pairs(\%vars) do
\%vars[\%k] = \(%v with %patt ~> %replacement)
end
return \%replacement:map(function(\%t)
if \%t.type == "Var" then
return \%vars[\%t[1]]
end
end)
end)
compile [declare locals in %code] to (..) compile [declare locals in %code] to (..)
Lua value "\(%code as lua expr):declare_locals()" Lua value "\(%code as lua expr):declare_locals()"
@ -275,11 +316,12 @@ compile [type of %obj] to (Lua value "type(\(%obj as lua expr))")
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test: test:
assume ((parse "foo %") == \(foo %)) assume ((parse "foo %") == \(foo \%))
compile [parse %text] to (Lua value "nomsu:parse(\(%text as lua expr))") assume ((parse "\\1") == \\1)
compile [parse %text] to (Lua value "_ENV:parse(\(%text as lua expr))")
compile [parse %text from %filename] to (..) compile [parse %text from %filename] to (..)
Lua value ".." Lua value ".."
nomsu:parse(NomsuCode(Source(\(%filename as lua expr), 1, #\(%text as lua expr)), \(..) _ENV:parse(NomsuCode(Source(\(%filename as lua expr), 1, #\(%text as lua expr)), \(..)
%text as lua expr %text as lua expr
..)) ..))
@ -287,19 +329,19 @@ test:
assume ((run "return (2 + 99)") == 101) assume ((run "return (2 + 99)") == 101)
external %passed = (no) external %passed = (no)
run \: run \:
external %passed = (yes) \(external \%passed = \(yes))
assume %passed assume %passed
compile [run %nomsu_code] to (..) compile [run %nomsu_code] to (..)
Lua value ".." Lua value ".."
nomsu:run(\(%nomsu_code as lua expr), \(..) _ENV:run(\(%nomsu_code as lua expr), \(..)
=lua "repr(tostring(\(%nomsu_code.source)))" =lua "repr(tostring(\(%nomsu_code.source)))"
..) ..)
test: test:
assume ((\(5 + 5) as value) == 10) or barf "%tree as value failed." assume ((\(\5 + \5) as value) == 10) or barf "%tree as value failed."
action [run tree %tree, %tree as value] (lua> "return nomsu:run(\%tree)") action [run tree %tree, %tree as value] (lua> "return _ENV:run(\%tree)")
compile [compile %block, compiled %block, %block compiled] to (..) compile [compile %block, compiled %block, %block compiled] to (..)
Lua value "nomsu:compile(\(%block as lua))" Lua value "_ENV:compile(\(%block as lua))"
# Return statement is wrapped in a do..end block because Lua is unhappy if you # Return statement is wrapped in a do..end block because Lua is unhappy if you
put code after a return statement, unless you wrap it in a block. put code after a return statement, unless you wrap it in a block.
@ -322,7 +364,7 @@ compile [command line args] to (Lua value "arg")
compile [with local compile actions %body] to (..) compile [with local compile actions %body] to (..)
Lua ".." Lua ".."
do do
local nomsu = table.fork(nomsu, {COMPILE_ACTIONS=table.fork(nomsu.COMPILE_ACTIONS)}) local nomsu = table.fork(nomsu, {COMPILE_ACTIONS=table.fork(COMPILE_ACTIONS)})
\(%body as lua statements) \(%body as lua statements)
end end

View File

@ -124,7 +124,7 @@ lua> ".."
}; };
for name, e in pairs(escapes) do for name, e in pairs(escapes) do
local lua = "'"..e.."'" local lua = "'"..e.."'"
nomsu.COMPILE_ACTIONS[name] = function(nomsu, tree) COMPILE_ACTIONS[name] = function(nomsu, tree)
return LuaCode.Value(tree.source, lua) return LuaCode.Value(tree.source, lua)
end end
end end

View File

@ -35,23 +35,34 @@ test:
assume ((me).barks == 101) or barf ".." assume ((me).barks == 101) or barf ".."
Error in nested 'as % %' failed to properly reset 'self' Error in nested 'as % %' failed to properly reset 'self'
object "Corgi" extends (class Dog) (method [sploot] "splooted") object "Corgi" extends (class Dog):
method [sploot] "splooted"
method [bark, woof]:
%barks = ("Yip!" for % in 1 to (me).barks)
return (%barks joined with " ")
%corg = (new Corgi) %corg = (new Corgi)
assume (%corg.barks == 0) assume (%corg.barks == 0)
as (new Corgi {barks:1}): as (new Corgi {barks:1}):
assume ((sploot) == "splooted") or barf "subclass method failed" assume ((sploot) == "splooted") or barf "subclass method failed"
assume ((bark) == "Bark!") or barf "inheritance failed" assume ((bark) == "Yip!") or barf "inheritance failed"
assume ((woof) == "Bark!") assume ((woof) == "Yip!")
as (new Dog {barks:2}):
assume ((bark) == "Bark! Bark!")
compile [@, me] to (Lua value "self") compile [@, me] to (Lua value "self")
compile [method %actions %body] to: compile [method %actions %body] to:
%lua = (compile as (local action %actions %body)) %lua = (\(local action \[%actions.1] %body) as lua)
declare locals in %lua
for % in %actions: for % in %actions:
to %lua write "\nclass.\(% as lua id) = \(% as lua id)" to %lua write "\n\(\%class as lua id).\(% as lua id) = \(%actions.1 as lua id)"
return (..) %lua = (..)
Lua ".." Lua ".."
do -- Method: \(%actions.(1).stub) do -- Method: \(%actions.(1).stub)
\%lua \%lua
end end
return %lua
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@ -64,33 +75,35 @@ parse [as %instance %body] as (..)
barf %msg barf %msg
..or if it succeeds: (me) = %old_self ..or if it succeeds: (me) = %old_self
compile [object %classname extends %parent %class_body] to (..) compile [object %classname extends %parent %class_body] to:
Lua ".." %class = (\%class as lua id)
do return (..)
local class = {name=\(%classname as lua expr)} Lua ".."
setmetatable(class, { do
__index=\(%parent as lua expr), local \%class = {name=\(%classname as lua expr)}
__tostring=function(cls) return cls.name end, setmetatable(\%class, {
__call=function(cls, inst) __index=\(%parent as lua expr),
inst = setmetatable(inst or {}, cls) __tostring=function(cls) return cls.name end,
if cls.A_initialize_1 then __call=function(cls, inst)
cls.A_initialize_1(inst) inst = setmetatable(inst or {}, cls)
end if cls.A_initialize_1 then
return inst cls.A_initialize_1(inst)
end, end
}) return inst
_ENV["A"..string.as_lua_id("new "..class.name)] = class end,
_ENV["A"..string.as_lua_id("new "..class.name.." 1")] = class })
_ENV["A"..string.as_lua_id("class "..class.name)] = function() return class end _ENV["A"..string.as_lua_id("new "..\%class.name)] = \%class
class.__index = class _ENV["A"..string.as_lua_id("new "..\%class.name.." 1")] = \%class
class.class = class _ENV["A"..string.as_lua_id("class "..\%class.name)] = function() return \%class end
\%class.__index = \%class
\(%class_body as lua statements) \%class.class = \%class
class.__tostring = class["A"..string.as_lua_id("as text")] or function(inst) \(%class_body as lua statements)
return inst.name..getmetatable(dict{}).__tostring(inst)
\%class.__tostring = \%class["A"..string.as_lua_id("as text")] or function(inst)
return inst.name..getmetatable(dict{}).__tostring(inst)
end
end end
end
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

View File

@ -43,6 +43,7 @@ action [..]
write to file %filename %text, to file %filename write %text write to file %filename %text, to file %filename write %text
write %text to file %filename write %text to file %filename
..: ..:
assume (%filename != "stdin") or barf "Cannot write to stdin"
lua> ".." lua> ".."
local file = io.open(\%filename, 'w') local file = io.open(\%filename, 'w')
file:write(\%text) file:write(\%text)

View File

@ -5,7 +5,7 @@ file:
/ file_chunks / empty_block) / file_chunks / empty_block)
%ws* (!! .+ -> "Parse error" !!)? %ws* (!! .+ -> "Parse error" !!)?
shebang: "#!" (!"nomsu" [^%nl])* "nomsu" %ws+ "-V" %ws* {:version: [0-9.]+ :} [^%nl]* shebang: {:shebang: "#!" (!"nomsu" [^%nl])* "nomsu" %ws+ "-V" %ws* {:version: [0-9.]+ :} [^%nl]* :}
file_chunks (FileChunks): file_chunks (FileChunks):
{:curr_indent: ' '* :} {:curr_indent: ' '* :}

View File

@ -145,7 +145,9 @@ dict = function(t)
return setmetatable(t, _dict_mt) return setmetatable(t, _dict_mt)
end end
local MAX_LINE = 80 local MAX_LINE = 80
local NomsuCompiler = setmetatable({ }, { local NomsuCompiler = setmetatable({
name = "Nomsu"
}, {
__index = function(self, k) __index = function(self, k)
do do
local _self = rawget(self, "self") local _self = rawget(self, "self")
@ -155,13 +157,14 @@ local NomsuCompiler = setmetatable({ }, {
return nil return nil
end end
end end
end,
__tostring = function(self)
return self.name
end end
}) })
do do
NomsuCompiler.NOMSU_COMPILER_VERSION = 5 NomsuCompiler.NOMSU_COMPILER_VERSION = 5
NomsuCompiler.NOMSU_SYNTAX_VERSION = Parser.version NomsuCompiler.NOMSU_SYNTAX_VERSION = Parser.version
NomsuCompiler._ENV = NomsuCompiler
NomsuCompiler.nomsu = NomsuCompiler
NomsuCompiler.parse = function(self, ...) NomsuCompiler.parse = function(self, ...)
return Parser.parse(...) return Parser.parse(...)
end end
@ -226,9 +229,6 @@ do
NomsuCompiler.LuaCode = LuaCode NomsuCompiler.LuaCode = LuaCode
NomsuCompiler.NomsuCode = NomsuCode NomsuCompiler.NomsuCode = NomsuCode
NomsuCompiler.Source = Source NomsuCompiler.Source = Source
NomsuCompiler.ALIASES = setmetatable({ }, {
__mode = "k"
})
NomsuCompiler.LOADED = { } NomsuCompiler.LOADED = { }
NomsuCompiler.TESTS = { } NomsuCompiler.TESTS = { }
NomsuCompiler.AST = AST NomsuCompiler.AST = AST
@ -335,13 +335,13 @@ do
end, end,
["lua > %"] = function(self, tree, _code) ["lua > %"] = function(self, tree, _code)
if _code.type ~= "Text" then if _code.type ~= "Text" then
return LuaCode(tree.source, "nomsu:run_lua(", self:compile(_code), ");") return LuaCode(tree.source, "_ENV:run_lua(", self:compile(_code), ");")
end end
return add_lua_bits(self, "statements", _code) return add_lua_bits(self, "statements", _code)
end, end,
["= lua %"] = function(self, tree, _code) ["= lua %"] = function(self, tree, _code)
if _code.type ~= "Text" then if _code.type ~= "Text" then
return LuaCode.Value(tree.source, "nomsu:run_lua(", self:compile(_code), ":as_statements('return '))") return LuaCode.Value(tree.source, "_ENV:run_lua(", self:compile(_code), ":as_statements('return '))")
end end
return add_lua_bits(self, "value", _code) return add_lua_bits(self, "value", _code)
end, end,
@ -352,7 +352,7 @@ do
self:run_file(f) self:run_file(f)
end end
end end
return LuaCode(tree.source, "for i,f in Files.walk(", self:compile(_path), ") do nomsu:run_file(f) end") return LuaCode(tree.source, "for i,f in Files.walk(", self:compile(_path), ") do _ENV:run_file(f) end")
end, end,
["tests"] = function(self, tree) ["tests"] = function(self, tree)
return LuaCode.Value(tree.source, "TESTS") return LuaCode.Value(tree.source, "TESTS")
@ -581,7 +581,11 @@ do
end end
local arg_lua = self:compile(tok) local arg_lua = self:compile(tok)
if not (arg_lua.is_value) then if not (arg_lua.is_value) then
self:compile_error(tok.source, "Cannot use:\n%s\nas an argument to %s, since it's not an expression, it produces: %s", stub, repr(arg_lua)) if tok.type == "Block" then
self:compile_error(tok.source, ("Cannot compile action '" .. tostring(stub) .. "' with a Block as an argument.\n" .. "Maybe there should be a compile-time action with that name that isn't being found?"))
else
self:compile_error(tok.source, "Cannot use:\n%s\nas an argument to '%s', since it's not an expression, it produces: %s", stub, repr(arg_lua))
end
end end
insert(args, arg_lua) insert(args, arg_lua)
_continue_0 = true _continue_0 = true
@ -594,26 +598,29 @@ do
lua:append(")") lua:append(")")
return lua return lua
elseif "EscapedNomsu" == _exp_0 then elseif "EscapedNomsu" == _exp_0 then
local make_tree local lua = LuaCode.Value(tree.source, tree[1].type, "(")
make_tree = function(t) local bits
if not (AST.is_syntax_tree(t)) then if tree[1].type == "EscapedNomsu" then
return repr(t) bits = {
end self:compile(tree[1])
local bits }
else
do do
local _accum_0 = { } local _accum_0 = { }
local _len_0 = 1 local _len_0 = 1
for _index_0 = 1, #t do local _list_0 = tree[1]
local bit = t[_index_0] for _index_0 = 1, #_list_0 do
_accum_0[_len_0] = make_tree(bit) local bit = _list_0[_index_0]
_accum_0[_len_0] = AST.is_syntax_tree(bit) and self:compile(bit) or repr(bit)
_len_0 = _len_0 + 1 _len_0 = _len_0 + 1
end end
bits = _accum_0 bits = _accum_0
end end
insert(bits, 1, repr(tostring(t.source)))
return t.type .. "(" .. concat(bits, ", ") .. ")"
end end
return LuaCode.Value(tree.source, make_tree(tree[1])) insert(bits, 1, repr(tostring(tree[1].source)))
lua:concat_append(bits, ", ")
lua:append(")")
return lua
elseif "Block" == _exp_0 then elseif "Block" == _exp_0 then
local lua = LuaCode(tree.source) local lua = LuaCode(tree.source)
lua:concat_append((function() lua:concat_append((function()
@ -647,7 +654,7 @@ do
end end
local bit_lua = self:compile(bit) local bit_lua = self:compile(bit)
if not (bit_lua.is_value) then if not (bit_lua.is_value) then
local src = ' ' .. gsub(tostring(recurse(bit)), '\n', '\n ') local src = ' ' .. gsub(tostring(self:compile(bit)), '\n', '\n ')
local line = tostring(bit.source.filename) .. ":" .. tostring(Files.get_line_number(Files.read(bit.source.filename), bit.source.start)) local line = tostring(bit.source.filename) .. ":" .. tostring(Files.get_line_number(Files.read(bit.source.filename), bit.source.start))
self:compile_error(bit.source, "Cannot use:\n%s\nas a string interpolation value, since it's not an expression.") self:compile_error(bit.source, "Cannot use:\n%s\nas a string interpolation value, since it's not an expression.")
end end

View File

@ -93,12 +93,12 @@ _dict_mt =
dict = (t)-> setmetatable(t, _dict_mt) dict = (t)-> setmetatable(t, _dict_mt)
MAX_LINE = 80 -- For beautification purposes, try not to make lines much longer than this value MAX_LINE = 80 -- For beautification purposes, try not to make lines much longer than this value
NomsuCompiler = setmetatable({}, {__index: (k)=> if _self = rawget(@, "self") then _self[k] else nil}) NomsuCompiler = setmetatable {name:"Nomsu"},
__index: (k)=> if _self = rawget(@, "self") then _self[k] else nil
__tostring: => @name
with NomsuCompiler with NomsuCompiler
.NOMSU_COMPILER_VERSION = 5 .NOMSU_COMPILER_VERSION = 5
.NOMSU_SYNTAX_VERSION = Parser.version .NOMSU_SYNTAX_VERSION = Parser.version
._ENV = NomsuCompiler
.nomsu = NomsuCompiler
.parse = (...)=> Parser.parse(...) .parse = (...)=> Parser.parse(...)
.can_optimize = -> false .can_optimize = -> false
@ -121,7 +121,6 @@ with NomsuCompiler
.LuaCode = LuaCode .LuaCode = LuaCode
.NomsuCode = NomsuCode .NomsuCode = NomsuCode
.Source = Source .Source = Source
.ALIASES = setmetatable({}, {__mode:"k"})
.LOADED = {} .LOADED = {}
.TESTS = {} .TESTS = {}
.AST = AST .AST = AST
@ -213,12 +212,12 @@ with NomsuCompiler
["lua > %"]: (tree, _code)=> ["lua > %"]: (tree, _code)=>
if _code.type != "Text" if _code.type != "Text"
return LuaCode tree.source, "nomsu:run_lua(", @compile(_code), ");" return LuaCode tree.source, "_ENV:run_lua(", @compile(_code), ");"
return add_lua_bits(@, "statements", _code) return add_lua_bits(@, "statements", _code)
["= lua %"]: (tree, _code)=> ["= lua %"]: (tree, _code)=>
if _code.type != "Text" if _code.type != "Text"
return LuaCode.Value tree.source, "nomsu:run_lua(", @compile(_code), ":as_statements('return '))" return LuaCode.Value tree.source, "_ENV:run_lua(", @compile(_code), ":as_statements('return '))"
return add_lua_bits(@, "value", _code) return add_lua_bits(@, "value", _code)
["use %"]: (tree, _path)=> ["use %"]: (tree, _path)=>
@ -226,7 +225,7 @@ with NomsuCompiler
path = _path[1] path = _path[1]
for _,f in Files.walk(path) for _,f in Files.walk(path)
@run_file(f) @run_file(f)
return LuaCode(tree.source, "for i,f in Files.walk(", @compile(_path), ") do nomsu:run_file(f) end") return LuaCode(tree.source, "for i,f in Files.walk(", @compile(_path), ") do _ENV:run_file(f) end")
["tests"]: (tree)=> LuaCode.Value(tree.source, "TESTS") ["tests"]: (tree)=> LuaCode.Value(tree.source, "TESTS")
["test %"]: (tree, _body)=> ["test %"]: (tree, _body)=>
@ -362,22 +361,28 @@ with NomsuCompiler
if type(tok) == "string" then continue if type(tok) == "string" then continue
arg_lua = @compile(tok) arg_lua = @compile(tok)
unless arg_lua.is_value unless arg_lua.is_value
@compile_error tok.source, if tok.type == "Block"
"Cannot use:\n%s\nas an argument to %s, since it's not an expression, it produces: %s", @compile_error tok.source,
stub, repr arg_lua ("Cannot compile action '#{stub}' with a Block as an argument.\n"..
"Maybe there should be a compile-time action with that name that isn't being found?")
else
@compile_error tok.source,
"Cannot use:\n%s\nas an argument to '%s', since it's not an expression, it produces: %s",
stub, repr arg_lua
insert args, arg_lua insert args, arg_lua
lua\concat_append args, ", " lua\concat_append args, ", "
lua\append ")" lua\append ")"
return lua return lua
when "EscapedNomsu" when "EscapedNomsu"
make_tree = (t)-> lua = LuaCode.Value tree.source, tree[1].type, "("
unless AST.is_syntax_tree(t) bits = if tree[1].type == "EscapedNomsu" then {@compile(tree[1])}
return repr(t) else [AST.is_syntax_tree(bit) and @compile(bit) or repr(bit) for bit in *tree[1]]
bits = [make_tree(bit) for bit in *t] insert bits, 1, repr(tostring tree[1].source)
insert bits, 1, repr(tostring t.source) lua\concat_append bits, ", "
return t.type.."("..concat(bits, ", ")..")" lua\append ")"
return LuaCode.Value tree.source, make_tree(tree[1]) return lua
when "Block" when "Block"
lua = LuaCode(tree.source) lua = LuaCode(tree.source)
@ -397,7 +402,7 @@ with NomsuCompiler
string_buffer = "" string_buffer = ""
bit_lua = @compile(bit) bit_lua = @compile(bit)
unless bit_lua.is_value unless bit_lua.is_value
src = ' '..gsub(tostring(recurse(bit)), '\n','\n ') src = ' '..gsub(tostring(@compile(bit)), '\n','\n ')
line = "#{bit.source.filename}:#{Files.get_line_number(Files.read(bit.source.filename), bit.source.start)}" line = "#{bit.source.filename}:#{Files.get_line_number(Files.read(bit.source.filename), bit.source.start)}"
@compile_error bit.source, @compile_error bit.source,
"Cannot use:\n%s\nas a string interpolation value, since it's not an expression." "Cannot use:\n%s\nas a string interpolation value, since it's not an expression."

View File

@ -40,11 +40,15 @@ for _index_0 = 1, #types do
return getmetatable(x) == self return getmetatable(x) == self
end end
cls.__tostring = function(self) cls.__tostring = function(self)
return tostring(self.type) .. "(" .. tostring(repr(tostring(self.source))) .. ", " .. tostring(concat((function() local args = {
tostring(self.source),
unpack(self)
}
return tostring(self.type) .. "(" .. tostring(concat((function()
local _accum_0 = { } local _accum_0 = { }
local _len_0 = 1 local _len_0 = 1
for _index_1 = 1, #self do for _index_1 = 1, #args do
local v = self[_index_1] local v = args[_index_1]
_accum_0[_len_0] = repr(v) _accum_0[_len_0] = repr(v)
_len_0 = _len_0 + 1 _len_0 = _len_0 + 1
end end
@ -114,7 +118,7 @@ for _index_0 = 1, #types do
end end
AST[name] = setmetatable(cls, { AST[name] = setmetatable(cls, {
__tostring = function(self) __tostring = function(self)
return self.name return self.__name
end, end,
__call = function(self, source, ...) __call = function(self, source, ...)
if type(source) == 'string' then if type(source) == 'string' then

View File

@ -19,7 +19,9 @@ for name in *types
.__name = name .__name = name
.type = name .type = name
.is_instance = (x)=> getmetatable(x) == @ .is_instance = (x)=> getmetatable(x) == @
.__tostring = => "#{@type}(#{repr tostring(@source)}, #{concat([repr(v) for v in *@], ', ')})" .__tostring = =>
args = {tostring(@source), unpack(@)}
"#{@type}(#{concat([repr(v) for v in *args], ', ')})"
.map = (fn)=> .map = (fn)=>
replacement = fn(@) replacement = fn(@)
if replacement == false then return nil if replacement == false then return nil
@ -47,7 +49,7 @@ for name in *types
return true return true
AST[name] = setmetatable cls, AST[name] = setmetatable cls,
__tostring: => @name __tostring: => @__name
__call: (source, ...)=> __call: (source, ...)=>
if type(source) == 'string' if type(source) == 'string'
source = Source\from_string(source) source = Source\from_string(source)

View File

@ -16,7 +16,7 @@ for %path in %files:
%file = (read file %filename) %file = (read file %filename)
%tree = (parse %file from %filename) %tree = (parse %file from %filename)
for %t in recursive %tree: for %t in recursive %tree:
if (%t is "Action" syntax tree) (..) if (%t is "Action" syntax tree):
if (%t.stub is %stub): if (%t.stub is %stub):
%line_num = (line number of %t.source.start in %file) %line_num = (line number of %t.source.start in %file)
say (blue "\%filename:\%line_num:") say (blue "\%filename:\%line_num:")

View File

@ -20,7 +20,6 @@ if (%args.1 is "-t"):
remove index 1 from %args remove index 1 from %args
for %path in %args: for %path in %args:
if (%path is "-i"): %inplace = (yes)
for file %filename in %path: for file %filename in %path:
unless (%filename matches "%.nom$"): do next %filename unless (%filename matches "%.nom$"): do next %filename
%tree = (parse (read file %filename) from %filename) %tree = (parse (read file %filename) from %filename)