Improving codegen line wrapping.

This commit is contained in:
Bruce Hill 2018-07-10 17:34:39 -07:00
parent 26a6174f28
commit 194146d365
4 changed files with 38 additions and 32 deletions

View File

@ -85,22 +85,28 @@ do
local _continue_0 = false local _continue_0 = false
repeat repeat
local b = select(i, ...) local b = select(i, ...)
assert(b, "bit is nil") assert(b, "code bit is nil")
if b == '' then if b == '' then
_continue_0 = true _continue_0 = true
break break
end end
bits[#bits + 1] = b bits[#bits + 1] = b
if type(b) == 'string' then if type(b) == 'string' then
do local trailing_text, spaces = match(b, "\n(([ ]*)[^\n]*)$")
local spaces = match(b, "\n([ ]*)[^\n]*$") if trailing_text then
if spaces then
self.current_indent = #spaces self.current_indent = #spaces
self.trailing_line_len = #trailing_text
end end
else
if #b.indents > 1 then
self.trailing_line_len = b.trailing_line_len
else
self.trailing_line_len = self.trailing_line_len + #tostring(b)
end end
elseif self.current_indent ~= 0 then if self.current_indent ~= 0 then
indents[#bits] = self.current_indent indents[#bits] = self.current_indent
end end
end
_continue_0 = true _continue_0 = true
until true until true
if not _continue_0 then if not _continue_0 then
@ -172,7 +178,9 @@ do
_class_0 = setmetatable({ _class_0 = setmetatable({
__init = function(self, source, ...) __init = function(self, source, ...)
self.source = source self.source = source
self.bits, self.indents, self.current_indent = { }, { }, 0 self.bits = { }
self.indents, self.current_indent = { }, 0
self.trailing_line_len = 0
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

View File

@ -45,7 +45,9 @@ class Source
class Code class Code
new: (@source, ...)=> new: (@source, ...)=>
@bits, @indents, @current_indent = {}, {}, 0 @bits = {}
@indents, @current_indent = {}, 0
@trailing_line_len = 0
if type(@source) == 'string' if type(@source) == 'string'
@source = Source\from_string(@source) @source = Source\from_string(@source)
assert(@source and Source\is_instance(@source), "Source has the wrong type") assert(@source and Source\is_instance(@source), "Source has the wrong type")
@ -57,13 +59,20 @@ class Code
match = string.match match = string.match
for i=1,n for i=1,n
b = select(i, ...) b = select(i, ...)
assert(b, "bit is nil") assert(b, "code bit is nil")
if b == '' then continue if b == '' then continue
bits[#bits+1] = b bits[#bits+1] = b
if type(b) == 'string' if type(b) == 'string'
if spaces = match(b, "\n([ ]*)[^\n]*$") trailing_text, spaces = match(b, "\n(([ ]*)[^\n]*)$")
if trailing_text
@current_indent = #spaces @current_indent = #spaces
elseif @current_indent != 0 @trailing_line_len = #trailing_text
else
if #b.indents > 1
@trailing_line_len = b.trailing_line_len
else
@trailing_line_len += #tostring(b)
if @current_indent != 0
indents[#bits] = @current_indent indents[#bits] = @current_indent
@__str = nil @__str = nil

View File

@ -150,7 +150,7 @@ local NomsuCompiler = setmetatable({ }, {
end end
}) })
do do
NomsuCompiler.NOMSU_COMPILER_VERSION = 3 NomsuCompiler.NOMSU_COMPILER_VERSION = 4
NomsuCompiler.NOMSU_SYNTAX_VERSION = Parser.version NomsuCompiler.NOMSU_SYNTAX_VERSION = Parser.version
NomsuCompiler._ENV = NomsuCompiler NomsuCompiler._ENV = NomsuCompiler
NomsuCompiler.nomsu = NomsuCompiler NomsuCompiler.nomsu = NomsuCompiler
@ -259,20 +259,14 @@ do
end end
local add_lua_string_bits local add_lua_string_bits
add_lua_string_bits = function(self, val_or_stmt, code) add_lua_string_bits = function(self, val_or_stmt, code)
local line_len = 0
local cls_str = val_or_stmt == "value" and "LuaCode.Value(" or "LuaCode(" local cls_str = val_or_stmt == "value" and "LuaCode.Value(" or "LuaCode("
if code.type ~= "Text" then if code.type ~= "Text" then
return LuaCode(code.source, cls_str, repr(tostring(code.source)), ", ", self:compile(code), ")") return LuaCode(code.source, cls_str, repr(tostring(code.source)), ", ", self:compile(code), ")")
end end
local add_bit_lua local add_bit_lua
add_bit_lua = function(lua, bit_lua) add_bit_lua = function(lua, bit_lua)
line_len = line_len + #tostring(bit_lua) local bit_leading_len = #(tostring(bit_lua):match("^[^\n]*"))
if line_len > MAX_LINE then lua:append(lua.trailing_line_len + bit_leading_len > MAX_LINE and ",\n " or ", ")
lua:append(",\n ")
line_len = 4
else
lua:append(", ")
end
return lua:append(bit_lua) return lua:append(bit_lua)
end end
local operate_on_text local operate_on_text

View File

@ -92,7 +92,7 @@ dict = (t)-> setmetatable(t, _dict_mt)
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
NomsuCompiler = setmetatable({}, {__index: (k)=> if _self = rawget(@, "self") then _self[k] else nil}) NomsuCompiler = setmetatable({}, {__index: (k)=> if _self = rawget(@, "self") then _self[k] else nil})
with NomsuCompiler with NomsuCompiler
.NOMSU_COMPILER_VERSION = 3 .NOMSU_COMPILER_VERSION = 4
.NOMSU_SYNTAX_VERSION = Parser.version .NOMSU_SYNTAX_VERSION = Parser.version
._ENV = NomsuCompiler ._ENV = NomsuCompiler
.nomsu = NomsuCompiler .nomsu = NomsuCompiler
@ -157,18 +157,13 @@ with NomsuCompiler
return operate_on_text code return operate_on_text code
add_lua_string_bits = (val_or_stmt, code)=> add_lua_string_bits = (val_or_stmt, code)=>
line_len = 0
cls_str = val_or_stmt == "value" and "LuaCode.Value(" or "LuaCode(" cls_str = val_or_stmt == "value" and "LuaCode.Value(" or "LuaCode("
if code.type != "Text" if code.type != "Text"
return LuaCode(code.source, cls_str, repr(tostring(code.source)), ", ", @compile(code), ")") return LuaCode(code.source, cls_str, repr(tostring(code.source)), ", ", @compile(code), ")")
add_bit_lua = (lua, bit_lua)-> add_bit_lua = (lua, bit_lua)->
line_len += #tostring(bit_lua) bit_leading_len = #(tostring(bit_lua)\match("^[^\n]*"))
if line_len > MAX_LINE lua\append(lua.trailing_line_len + bit_leading_len > MAX_LINE and ",\n " or ", ")
lua\append ",\n " lua\append(bit_lua)
line_len = 4
else
lua\append ", "
lua\append bit_lua
operate_on_text = (text)-> operate_on_text = (text)->
lua = LuaCode.Value(text.source, cls_str, repr(tostring(text.source))) lua = LuaCode.Value(text.source, cls_str, repr(tostring(text.source)))
for bit in *text for bit in *text