Some minor fixes for (type of $ast) and indexing codegen.

This commit is contained in:
Bruce Hill 2018-12-30 21:16:49 -08:00
parent 44c3fb26bf
commit 435eae7c0a
4 changed files with 4 additions and 5 deletions

View File

@ -186,7 +186,7 @@ tree_to_inline_nomsu = function(tree)
elseif "IndexChain" == _exp_0 then
local nomsu = NomsuCode:from(tree.source)
for i, bit in ipairs(tree) do
if i > 1 then
if i > 1 and bit.type ~= "Index" then
nomsu:add(".")
end
local bit_nomsu

View File

@ -139,7 +139,7 @@ tree_to_inline_nomsu = (tree)->
when "IndexChain"
nomsu = NomsuCode\from(tree.source)
for i, bit in ipairs tree
nomsu\add "." if i > 1
nomsu\add "." if i > 1 and bit.type != "Index"
local bit_nomsu
bit_nomsu = if i > 1 and bit.type == "Text" and #bit == 1 and type(bit[1]) == 'string' and is_identifier(bit[1])
bit[1]

View File

@ -202,7 +202,6 @@ do
})
_base_0.__class = _class_0
local self = _class_0
self.__type = "Syntax Tree"
self.source_code_for_tree = setmetatable({ }, {
__index = function(self, t)
local s = t.source
@ -217,6 +216,7 @@ do
end
SyntaxTree = _class_0
end
SyntaxTree.__base.__type = "Syntax Tree"
getmetatable(SyntaxTree).__call = function(self, t)
if type(t.source) == 'string' then
t.source = Source:from_string(t.source)

View File

@ -16,8 +16,6 @@ as_lua = =>
--types = {"Number", "Var", "Block", "EscapedNomsu", "Text", "List", "Dict", "DictEntry",
-- "IndexChain", "Action", "FileChunks", "Error", "Comment"}
class SyntaxTree
@__type: "Syntax Tree"
__tostring: =>
bits = [type(b) == 'string' and b\as_lua! or tostring(b) for b in *@]
for k,v in pairs(@)
@ -104,6 +102,7 @@ class SyntaxTree
@is_instance: (t)=>
type(t) == 'table' and getmetatable(t) == @__base
SyntaxTree.__base.__type = "Syntax Tree"
getmetatable(SyntaxTree).__call = (t)=>
if type(t.source) == 'string'