This commit is contained in:
Bruce Hill 2018-09-28 22:15:24 -07:00
parent 63d8b1cd3f
commit b7e768a2f8
3 changed files with 18 additions and 16 deletions

View File

@ -78,7 +78,7 @@ do
local _class_0 local _class_0
local _base_0 = { local _base_0 = {
is_code = true, is_code = true,
__tostring = function(self) as_smext = function(self)
if self.__str == nil then if self.__str == nil then
local buff, indent = { }, 0 local buff, indent = { }, 0
local match, gsub, rep local match, gsub, rep
@ -95,7 +95,7 @@ do
end end
end end
else else
b = tostring(b) b = b:as_smext()
if indent > 0 then if indent > 0 then
b = gsub(b, "\n", "\n" .. rep(" ", indent)) b = gsub(b, "\n", "\n" .. rep(" ", indent))
end end
@ -106,6 +106,9 @@ do
end end
return self.__str return self.__str
end, end,
__tostring = function(self)
return self:as_smext()
end,
as_lua = function(self) as_lua = function(self)
return tostring(self.__class.__name) .. "(" .. tostring(concat({ return tostring(self.__class.__name) .. "(" .. tostring(concat({
tostring(self.source):as_lua(), tostring(self.source):as_lua(),
@ -123,13 +126,13 @@ do
}, ", ")) .. ")" }, ", ")) .. ")"
end, end,
__len = function(self) __len = function(self)
return #tostring(self) return #self:as_smext()
end, end,
match = function(self, ...) match = function(self, ...)
return tostring(self):match(...) return self:as_smext():match(...)
end, end,
gmatch = function(self, ...) gmatch = function(self, ...)
return tostring(self):gmatch(...) return self:as_smext():gmatch(...)
end, end,
dirty = function(self) dirty = function(self)
self.__str = nil self.__str = nil
@ -155,9 +158,6 @@ do
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 = b:as_lua()
end
bits[#bits + 1] = b bits[#bits + 1] = b
_continue_0 = true _continue_0 = true
until true until true
@ -169,7 +169,7 @@ do
end, end,
trailing_line_len = function(self) trailing_line_len = function(self)
if self._trailing_line_len == nil then if self._trailing_line_len == nil then
self._trailing_line_len = #tostring(self):match("[^\n]*$") self._trailing_line_len = #self:as_smext():match("[^\n]*$")
end end
return self._trailing_line_len return self._trailing_line_len
end, end,
@ -212,7 +212,9 @@ do
if b.is_code then if b.is_code then
b.dirty = error b.dirty = error
end end
b = tostring(b) if not (type(b) == 'string') then
b = b:as_smext()
end
local line = match(b, "\n([^\n]*)$") local line = match(b, "\n([^\n]*)$")
if line then if line then
line_len = #line line_len = #line
@ -233,9 +235,6 @@ do
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 = b:as_lua()
end
bits[i] = b bits[i] = b
end end
return self:dirty() return self:dirty()
@ -253,7 +252,6 @@ do
if type(self.source) == 'string' then if type(self.source) == 'string' then
self.source = Source:from_string(self.source) self.source = Source:from_string(self.source)
end end
assert(self.source and Source:is_instance(self.source), "Source has the wrong type")
return self:append(...) return self:append(...)
end, end,
__base = _base_0, __base = _base_0,
@ -402,8 +400,9 @@ do
end end
else else
walk(b, pos) walk(b, pos)
b = b:as_smext()
end end
pos = pos + #tostring(b) pos = pos + #b
end end
end end
walk(self, 1) walk(self, 1)

View File

@ -216,6 +216,8 @@ local _list_mt = {
return rawset(self, k, v) return rawset(self, k, v)
end end
} }
_list_mt.__index.as_lua = _list_mt.as_lua
_list_mt.__index.as_nomsu = _list_mt.as_nomsu
List = function(t) List = function(t)
return setmetatable(t, _list_mt) return setmetatable(t, _list_mt)
end end

View File

@ -11,7 +11,7 @@ AST.is_syntax_tree = function(n, t)
if t == nil then if t == nil then
t = nil t = nil
end end
return type(n) == 'table' and getmetatable(n) and AST[n.type] == getmetatable(n) and (t == nil or n.type == t) return type(n) == 'table' and getmetatable(n) and getmetatable(n).__type == "Syntax Tree" and (t == nil or n.type == t)
end end
local as_lua local as_lua
as_lua = function(self) as_lua = function(self)
@ -54,6 +54,7 @@ for _index_0 = 1, #types do
cls.__index = cls cls.__index = cls
cls.__name = name cls.__name = name
cls.type = name cls.type = name
cls.__type = "Syntax Tree"
cls.is_instance = function(self, x) cls.is_instance = function(self, x)
return getmetatable(x) == self return getmetatable(x) == self
end end