Deduplicating code a bit.

This commit is contained in:
Bruce Hill 2018-07-23 15:24:43 -07:00
parent 7eabdbcc7d
commit 3d7842ef73

View File

@ -52,6 +52,25 @@ class Code
assert(@source and Source\is_instance(@source), "Source has the wrong type") assert(@source and Source\is_instance(@source), "Source has the wrong type")
@append(...) @append(...)
__tostring: =>
if @__str == nil
buff, indent = {}, 0
{:match, :gsub, :rep} = string
for i,b in ipairs @bits
if type(b) == 'string'
if spaces = match(b, "\n([ ]*)[^\n]*$")
indent = #spaces
else
b = tostring(b)
if indent > 0
b = gsub(b, "\n", "\n"..rep(" ", indent))
buff[#buff+1] = b
@__str = concat(buff, "")
return @__str
__len: =>
#tostring(self)
dirty: => dirty: =>
@__str = nil @__str = nil
@_trailing_line_len = nil @_trailing_line_len = nil
@ -126,7 +145,13 @@ class Code
b.dirty = error if b.is_code b.dirty = error if b.is_code
@dirty! @dirty!
parenthesize: =>
@prepend "("
@append ")"
class LuaCode extends Code class LuaCode extends Code
__tostring: Code.__tostring
__len: Code.__len
new: (...)=> new: (...)=>
super ... super ...
@free_vars = {} @free_vars = {}
@ -194,25 +219,6 @@ class LuaCode extends Code
statements\append suffix statements\append suffix
return statements return statements
__tostring: =>
if @__str == nil
buff, indent = {}, 0
{:match, :gsub, :rep} = string
for i,b in ipairs @bits
if type(b) == 'string'
if spaces = match(b, "\n([ ]*)[^\n]*$")
indent = #spaces
else
b = tostring(b)
if indent > 0
b = gsub(b, "\n", "\n"..rep(" ", indent))
buff[#buff+1] = b
@__str = concat(buff, "")
return @__str
__len: =>
#tostring(self)
make_offset_table: => make_offset_table: =>
-- Return a mapping from output (lua) character number to input (nomsu) character number -- Return a mapping from output (lua) character number to input (nomsu) character number
lua_to_nomsu, nomsu_to_lua = {}, {} lua_to_nomsu, nomsu_to_lua = {}, {}
@ -233,34 +239,12 @@ class LuaCode extends Code
} }
parenthesize: => parenthesize: =>
if @is_value assert @is_value, "Cannot parenthesize lua statements"
@prepend "(" @prepend "("
@append ")" @append ")"
else
error "Cannot parenthesize lua statements"
class NomsuCode extends Code class NomsuCode extends Code
__tostring: => __tostring: Code.__tostring
if @__str == nil __len: Code.__len
buff, indent = {}, 0
{:match, :gsub, :rep} = string
for i,b in ipairs @bits
if type(b) == 'string'
if spaces = match(b, "\n([ ]*)[^\n]*$")
indent = #spaces
else
b = tostring(b)
if indent > 0
b = gsub(b, "\n", "\n"..rep(" ", indent))
buff[#buff+1] = b
@__str = concat(buff, "")
return @__str
__len: =>
#tostring(self)
parenthesize: =>
@prepend "("
@append ")"
return {:Code, :NomsuCode, :LuaCode, :Source} return {:Code, :NomsuCode, :LuaCode, :Source}