Fixed all syntax errors, got original (non-nomnom) tests passing.

This commit is contained in:
Bruce Hill 2018-09-26 13:05:28 -07:00
parent 692fae5416
commit b43432e647
9 changed files with 35 additions and 28 deletions

View File

@ -48,6 +48,7 @@ as_lua = function(self)
return error("Not supported: " .. tostring(self)) return error("Not supported: " .. tostring(self))
end end
local _list_mt = { local _list_mt = {
__type = "List",
__eq = equivalent, __eq = equivalent,
__tostring = function(self) __tostring = function(self)
return "[" .. concat((function() return "[" .. concat((function()
@ -231,6 +232,7 @@ walk_items = function(self, i)
end end
end end
local _dict_mt = { local _dict_mt = {
__type = "Dict",
__eq = equivalent, __eq = equivalent,
__len = size, __len = size,
__tostring = function(self) __tostring = function(self)

View File

@ -26,6 +26,7 @@ as_lua = =>
-- List and Dict classes to provide basic equality/tostring functionality for the tables -- List and Dict classes to provide basic equality/tostring functionality for the tables
-- used in Nomsu. This way, they retain a notion of whether they were originally lists or dicts. -- used in Nomsu. This way, they retain a notion of whether they were originally lists or dicts.
_list_mt = _list_mt =
__type: "List"
__eq:equivalent __eq:equivalent
-- Could consider adding a __newindex to enforce list-ness, but would hurt performance -- Could consider adding a __newindex to enforce list-ness, but would hurt performance
__tostring: => __tostring: =>
@ -96,6 +97,7 @@ walk_items = (i)=>
return i, Dict{key:k, value:v} return i, Dict{key:k, value:v}
_dict_mt = _dict_mt =
__type: "Dict"
__eq:equivalent __eq:equivalent
__len:size __len:size
__tostring: => __tostring: =>

View File

@ -72,6 +72,8 @@ compile [..]
end end
end)())" end)())"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# GOTOs # GOTOs
test: test:
%i = 0 %i = 0
@ -84,9 +86,10 @@ test:
unless (%i == 0): go to (Loop) unless (%i == 0): go to (Loop)
assume (%i == 0) assume (%i == 0)
compile [=== %label ===, --- %label ---, *** %label ***] to (..) compile [=== %label ===, --- %label ---, *** %label ***] to (..)
Lua "::label_\(%label as lua identifier)::" Lua "::label_\((%label.stub if (%label.type == "Action") else %label) as lua identifier)::"
compile [go to %label] to (Lua "goto label_\(%label as lua identifier)") compile [go to %label] to (..)
Lua "goto label_\((%label.stub if (%label.type == "Action") else %label) as lua identifier)"
# Basic loop control # Basic loop control
compile [do next] to (Lua "goto continue") compile [do next] to (Lua "goto continue")
@ -165,13 +168,15 @@ compile [repeat %n times %body] to:
return %lua return %lua
# For loop control flow # For loop control flow
compile [stop %var] to (Lua "goto stop_\(%var as lua identifier)") compile [stop %var] to (..)
compile [do next %var] to (Lua "goto continue_\(%var as lua identifier)") Lua "goto stop_\((%var.stub if (%var.type == "Action") else %var) as lua identifier)"
compile [do next %var] to (..)
Lua "goto continue_\((%var.stub if (%var.type == "Action") else %var) as lua identifier)"
compile [===stop %var ===, ---stop %var ---, ***stop %var ***] to (..) compile [===stop %var ===, ---stop %var ---, ***stop %var ***] to (..)
Lua "::stop_\(%var as lua identifier)::" Lua "::stop_\((%var.stub if (%var.type == "Action") else %var) as lua identifier)::"
compile [===next %var ===, ---next %var ---, ***next %var ***] to (..) compile [===next %var ===, ---next %var ---, ***next %var ***] to (..)
Lua "::continue_\(%var as lua identifier)::" Lua "::continue_\((%var.stub if (%var.type == "Action") else %var) as lua identifier)::"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@ -516,11 +521,11 @@ test:
%t = [1, [2, [[3], 4], 5, [[[6]]]]] %t = [1, [2, [[3], 4], 5, [[[6]]]]]
%flat = [] %flat = []
for % in recursive %t: for % in recursive %t:
if ((type of %) is "table"): if ((lua type of %) is "table"):
for %2 in %: recurse % on %2 for %2 in %: recurse % on %2
..else: %flat::add % ..else: %flat::add %
assume ((sorted %flat) == [1, 2, 3, 4, 5, 6]) assume (sorted %flat) == [1, 2, 3, 4, 5, 6]
# Recurion control flow # Recurion control flow
compile [for %var in recursive %structure %body] to (..) compile [for %var in recursive %structure %body] to (..)

View File

@ -236,7 +236,7 @@ action [%var as lua identifier, %var as lua id] (..)
elseif AST.is_syntax_tree(\%var) then elseif AST.is_syntax_tree(\%var) then
local lua = \(%var as lua expr) local lua = \(%var as lua expr)
if not tostring(lua):match("^[_a-zA-Z][_a-zA-Z0-9]*$") then if not tostring(lua):match("^[_a-zA-Z][_a-zA-Z0-9]*$") then
compile_error_at_1_2(\%var, "This is not a valid Lua identifier.") nomsu:compile_error(\%var, "This is not a valid Lua identifier.")
end end
return lua return lua
else error("Unknown type: "..tostring(\%var)) else error("Unknown type: "..tostring(\%var))
@ -322,7 +322,7 @@ test:
compile [quote %s] to (Lua value "tostring(\(%s as lua expr)):as_lua()") compile [quote %s] to (Lua value "tostring(\(%s as lua expr)):as_lua()")
test: test:
assume (lua type of {}) == "Lua table" assume (lua type of {}) == "table"
assume (type of {}) == "Dict" assume (type of {}) == "Dict"
assume ({} is a "Dict") assume ({} is a "Dict")
assume ("" is text) assume ("" is text)
@ -341,7 +341,7 @@ action [type of %]:
else return lua_type end" else return lua_type end"
parse [% is a %type, % is an %type] as ((type of %) == %type) parse [% is a %type, % is an %type] as ((type of %) == %type)
parse [% isn't a %type, % isn't an %type, % is not a %type, % is not an %type] parse [% isn't a %type, % isn't an %type, % is not a %type, % is not an %type]
..as ((type of %) == %type) ..as ((type of %) != %type)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

View File

@ -80,9 +80,9 @@ compile [object %classname extends %parent %class_body] to:
Lua "\ Lua "\
..do ..do
local class = {name=\(quote %classname.stub)} local class = {name=\(quote %classname.stub)}
class.__type = class.name
setmetatable(class, { setmetatable(class, {
__index=\(%parent as lua expr), __index=\(%parent as lua expr),
__type=class.name,
__tostring=function(cls) return cls.name end, __tostring=function(cls) return cls.name end,
__call=function(cls, inst) __call=function(cls, inst)
inst = setmetatable(inst or {}, cls) inst = setmetatable(inst or {}, cls)

View File

@ -140,7 +140,7 @@ action [compile %tree using %compile_actions]:
..Can't use this as a dict key, since it's not an expression." ..Can't use this as a dict key, since it's not an expression."
%value_lua = (..) %value_lua = (..)
(compile %value using %compile_actions) if %value (compile %value using %compile_actions) if %value
..else (Lua Value from %key ["true"])) ..else (Lua Value from %key ["true"])
unless %value_lua.is_value: unless %value_lua.is_value:
compile error at %tree.2 "\ compile error at %tree.2 "\
..Can't use this as a dict value, since it's not an expression." ..Can't use this as a dict value, since it's not an expression."

View File

@ -45,9 +45,10 @@ action [decompile %tree inline]:
"Block": "Block":
%nomsu = (Nomsu Code from %tree [":"]) %nomsu = (Nomsu Code from %tree [":"])
for i,line in ipairs tree for %line in %tree at %i:
%nomsu::add(i == 1 and " " or "; ") %nomsu::add [..]
%nomsu::add recurse(line, nomsu, i == 1 or i < #tree) " " if (%i == 1) else "; "
decompile %line inline
return %nomsu return %nomsu
"Text": "Text":
@ -100,12 +101,12 @@ action [decompile %tree inline]:
"IndexChain": "IndexChain":
%nomsu = (Nomsu Code from %tree) %nomsu = (Nomsu Code from %tree)
for %bit in %tree at %i: for %bit in %tree at %i:
if (%i > 1): nomsu::add "." if (%i > 1): %nomsu::add "."
if (..) if (..)
all of [..] all of [..]
%i > 1, %bit.type == "Text", (size of %bit) == 1, %bit.1 is text, %i > 1, %bit.type == "Text", (size of %bit) == 1, %bit.1 is text,
%bit.1::is a nomsu identifier %bit.1::is a nomsu identifier
%nomsu::add %bit.1 ..:%nomsu::add %bit.1
..else: ..else:
%bit_nomsu = (decompile %bit inline) %bit_nomsu = (decompile %bit inline)
if (..) if (..)
@ -261,7 +262,7 @@ action [decompile %tree]:
%bit = (escape text %bit) %bit = (escape text %bit)
for %line in (%bit::lines) at %j: for %line in (%bit::lines) at %j:
if: if:
(%j > 1): nomsu::add "\n" (%j > 1): %nomsu::add "\n"
(((size of %line) > 10) and ((%nomsu::trailing line length) > %max_line)): (((size of %line) > 10) and ((%nomsu::trailing line length) > %max_line)):
%nomsu::add "\\\n.." %nomsu::add "\\\n.."
@ -304,14 +305,14 @@ action [decompile %tree]:
%item_nomsu = (recurse on %item_nomsu) %item_nomsu = (recurse on %item_nomsu)
%nomsu::add %item_nomsu %nomsu::add %item_nomsu
if (%i < (size of %tree)): if (%i < (size of %tree)):
if (..) if any of [..]
(%item_nomsu::is multi-line) or (..) %item_nomsu::is multi-line
(%nomsu::trailing line length) + (size of "\%item_nomsu")) >= %MAX_LINE ((%nomsu::trailing line length) + (size of "\%item_nomsu")) >= %MAX_LINE
..: %nomsu::add "\n" ..: %nomsu::add "\n"
..else: %nomsu::add ", " ..else: %nomsu::add ", "
return (..) return (..)
Nomsu Code from %tree [..] Nomsu Code from %tree [..]
"[..]\n " if tree.type == "List" else "{..}\n " "[..]\n " if (%tree.type == "List") else "{..}\n "
%nomsu %nomsu
"DictEntry": "DictEntry":

View File

@ -82,9 +82,6 @@ try:
..or if it barfs: ..or if it barfs:
# LFS not found! Fall back to shell commands, if available. # LFS not found! Fall back to shell commands, if available.
unless (sh> "find . -maxdepth 0"): unless (sh> "find . -maxdepth 0"):
url = if jit
'https://github.com/spacewander/luafilesystem'
else
barf "\ barf "\
..Could not find 'luafilesystem' module and couldn't run system command 'find' \ ..Could not find 'luafilesystem' module and couldn't run system command 'find' \
..(this might happen on Windows). Please install 'luafilesystem' (which can be \ ..(this might happen on Windows). Please install 'luafilesystem' (which can be \

View File

@ -21,8 +21,8 @@ set {..}
userdata: Carg 1 userdata: Carg 1
utf8_char: (..) utf8_char: (..)
(R "\194\223")*(R "\128\191") + (R "\194\223")*(R "\128\191") +
(R "\224\239")*(R "\128\191")*(R "\128\191") + ..(R "\224\239")*(R "\128\191")*(R "\128\191") +
(R "\240\244")*(R "\128\191")*(R "\128\191")*(R "\128\191") ..(R "\240\244")*(R "\128\191")*(R "\128\191")*(R "\128\191")
Tree: [%t, %userdata] ->: Tree: [%t, %userdata] ->:
%source = (..) %source = (..)