Fixed dumb bug that broke the tests.

This commit is contained in:
Bruce Hill 2018-07-10 17:36:52 -07:00
parent 194146d365
commit b32634faf8
2 changed files with 2 additions and 2 deletions

View File

@ -261,7 +261,7 @@ do
add_lua_string_bits = function(self, val_or_stmt, code)
local cls_str = val_or_stmt == "value" and "LuaCode.Value(" or "LuaCode("
if code.type ~= "Text" then
return LuaCode(code.source, cls_str, repr(tostring(code.source)), ", ", self:compile(code), ")")
return LuaCode.Value(code.source, cls_str, repr(tostring(code.source)), ", ", self:compile(code), ")")
end
local add_bit_lua
add_bit_lua = function(lua, bit_lua)

View File

@ -159,7 +159,7 @@ with NomsuCompiler
add_lua_string_bits = (val_or_stmt, code)=>
cls_str = val_or_stmt == "value" and "LuaCode.Value(" or "LuaCode("
if code.type != "Text"
return LuaCode(code.source, cls_str, repr(tostring(code.source)), ", ", @compile(code), ")")
return LuaCode.Value(code.source, cls_str, repr(tostring(code.source)), ", ", @compile(code), ")")
add_bit_lua = (lua, bit_lua)->
bit_leading_len = #(tostring(bit_lua)\match("^[^\n]*"))
lua\append(lua.trailing_line_len + bit_leading_len > MAX_LINE and ",\n " or ", ")