Added support for $($foo, baz) as equivalent to $foo.baz.

This commit is contained in:
Bruce Hill 2019-03-27 14:41:36 -07:00
parent 8719641ace
commit 8bf8877ff9
4 changed files with 22 additions and 3 deletions

View File

@ -43,7 +43,7 @@ test:
if i > 1 then lua:add(", ") end if i > 1 then lua:add(", ") end
local assignment_lua = \($assignment as lua expr) local assignment_lua = \($assignment as lua expr)
lua:add(assignment_lua) lua:add(assignment_lua)
if \$assignment.type == 'Var' then if \$assignment.type == 'Var' and \$assignment[1].type ~= "MethodCall" then
lua:add_free_vars({assignment_lua:text()}) lua:add_free_vars({assignment_lua:text()})
end end
end end
@ -67,7 +67,7 @@ test:
else else
local var_lua = \($var as lua expr) local var_lua = \($var as lua expr)
lua:add(var_lua) lua:add(var_lua)
if \$var.type == 'Var' then if \$var.type == 'Var' and \$var[1].type ~= "MethodCall" then
lua:add_free_vars({var_lua:text()}) lua:add_free_vars({var_lua:text()})
end end
lua:add(' = ', \($value as lua expr), ';') lua:add(' = ', \($value as lua expr), ';')

View File

@ -189,7 +189,7 @@ real_number (Number) <-
{ (%at_break "-")? [0-9]+ (("_"+->"") [0-9]+)* "." [0-9]+ (("_"+->"") [0-9]+)* } { (%at_break "-")? [0-9]+ (("_"+->"") [0-9]+)* "." [0-9]+ (("_"+->"") [0-9]+)* }
variable (Var) <- "$" ({ident_char+} / "(" ws* (inline_action / variable) ws* ")" / {''}) variable (Var) <- "$" ({ident_char+} / "(" ws* (inline_methodchain / inline_action / variable) ws* ")" / {''})
inline_list (List) <- inline_list (List) <-

View File

@ -73,6 +73,9 @@ local math_expression = re.compile([[ (([*/^+-] / [0-9]+) " ")* [*/^+-] !. ]])
local MAX_LINE = 80 local MAX_LINE = 80
local compile local compile
compile = function(self, tree) compile = function(self, tree)
if tree == nil then
error("No tree was passed in.")
end
if tree.version and tree.version < self.NOMSU_VERSION:up_to(#tree.version) and self._1_upgraded_from_2_to then if tree.version and tree.version < self.NOMSU_VERSION:up_to(#tree.version) and self._1_upgraded_from_2_to then
tree = self._1_upgraded_from_2_to(tree, tree.version, self.NOMSU_VERSION) tree = self._1_upgraded_from_2_to(tree, tree.version, self.NOMSU_VERSION)
end end
@ -258,6 +261,11 @@ compile = function(self, tree)
return lua return lua
elseif "Block" == _exp_0 then elseif "Block" == _exp_0 then
local lua = LuaCode:from(tree.source) local lua = LuaCode:from(tree.source)
for i, line in ipairs(tree) do
if line.type == "Error" then
return self:compile(line)
end
end
for i, line in ipairs(tree) do for i, line in ipairs(tree) do
if i > 1 then if i > 1 then
lua:add("\n") lua:add("\n")
@ -427,6 +435,9 @@ compile = function(self, tree)
local number = tostring(tree[1]):gsub("_", "") local number = tostring(tree[1]):gsub("_", "")
return LuaCode:from(tree.source, number) return LuaCode:from(tree.source, number)
elseif "Var" == _exp_0 then elseif "Var" == _exp_0 then
if tree[1].type == "MethodCall" then
return LuaCode:from(tree.source, self:compile(tree[1][1]), ".", tree[1][2]:get_stub():as_lua_id())
end
return LuaCode:from(tree.source, tree:as_var():as_lua_id()) return LuaCode:from(tree.source, tree:as_var():as_lua_id())
elseif "FileChunks" == _exp_0 then elseif "FileChunks" == _exp_0 then
return error("Can't convert FileChunks to a single block of lua, since each chunk's " .. "compilation depends on the earlier chunks") return error("Can't convert FileChunks to a single block of lua, since each chunk's " .. "compilation depends on the earlier chunks")

View File

@ -62,6 +62,9 @@ math_expression = re.compile [[ (([*/^+-] / [0-9]+) " ")* [*/^+-] !. ]]
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
compile = (tree)=> compile = (tree)=>
if tree == nil
error("No tree was passed in.")
-- Automatically upgrade trees from older versions: -- Automatically upgrade trees from older versions:
if tree.version and tree.version < @NOMSU_VERSION\up_to(#tree.version) and @_1_upgraded_from_2_to if tree.version and tree.version < @NOMSU_VERSION\up_to(#tree.version) and @_1_upgraded_from_2_to
tree = @._1_upgraded_from_2_to(tree, tree.version, @NOMSU_VERSION) tree = @._1_upgraded_from_2_to(tree, tree.version, @NOMSU_VERSION)
@ -210,6 +213,9 @@ compile = (tree)=>
when "Block" when "Block"
lua = LuaCode\from(tree.source) lua = LuaCode\from(tree.source)
for i, line in ipairs tree
if line.type == "Error"
return @compile(line)
for i, line in ipairs tree for i, line in ipairs tree
if i > 1 then lua\add "\n" if i > 1 then lua\add "\n"
line_lua = @compile(line) line_lua = @compile(line)
@ -345,6 +351,8 @@ compile = (tree)=>
return LuaCode\from(tree.source, number) return LuaCode\from(tree.source, number)
when "Var" when "Var"
if tree[1].type == "MethodCall"
return LuaCode\from(tree.source, @compile(tree[1][1]), ".", tree[1][2]\get_stub!\as_lua_id!)
return LuaCode\from(tree.source, tree\as_var!\as_lua_id!) return LuaCode\from(tree.source, tree\as_var!\as_lua_id!)
when "FileChunks" when "FileChunks"