Minor fix.

This commit is contained in:
Bruce Hill 2017-12-14 14:26:24 -08:00
parent ce398c255a
commit 49adc12952
2 changed files with 18 additions and 3 deletions

View File

@ -412,7 +412,7 @@ do
end end
end end
for k, v in pairs(scope["#vars"] or { }) do for k, v in pairs(scope["#vars"] or { }) do
insert(buff, "<@" .. tostring(k) .. "> = " .. tostring(self:value_to_nomsu(v))) insert(buff, "<%" .. tostring(k) .. "> = " .. tostring(self:value_to_nomsu(v)))
end end
return concat(buff, "\n") return concat(buff, "\n")
end, end,
@ -853,6 +853,14 @@ end);]]):format(concat(buffer, "\n"))
return _accum_0 return _accum_0
end)(), "; ")) .. "})" end)(), "; ")) .. "})"
end end
elseif "string" == _exp_0 then
if value == "\n" then
return "'\\n'"
elseif not value:find([["]]) and not value:find("\n") and not value:find("\\") then
return "\"" .. value .. "\""
else
return '".."\n ' .. (self:indent(value))
end
else else
return error("Unsupported value_to_nomsu type: " .. tostring(type(value))) return error("Unsupported value_to_nomsu type: " .. tostring(type(value)))
end end

View File

@ -37,7 +37,6 @@ if _VERSION == "Lua 5.1"
-- type checking? -- type checking?
-- Fix compiler bug that breaks when file ends with a block comment -- Fix compiler bug that breaks when file ends with a block comment
-- Add compiler options for optimization level (compile-fast vs. run-fast, etc.) -- Add compiler options for optimization level (compile-fast vs. run-fast, etc.)
-- Change longstrings to be "..\n content\n.."
-- Change precompiling from producing lua code to producing lua> "code" nomsu files -- Change precompiling from producing lua code to producing lua> "code" nomsu files
lpeg.setmaxstack 10000 -- whoa lpeg.setmaxstack 10000 -- whoa
@ -309,7 +308,7 @@ class NomsuCompiler
insert buff, "using:\n #{@indent @serialize_defs(_using)}\n..do:\n #{@indent concat(_using_do, "\n")}" insert buff, "using:\n #{@indent @serialize_defs(_using)}\n..do:\n #{@indent concat(_using_do, "\n")}"
for k,v in pairs(scope["#vars"] or {}) for k,v in pairs(scope["#vars"] or {})
insert buff, "<@#{k}> = #{@value_to_nomsu v}" insert buff, "<%#{k}> = #{@value_to_nomsu v}"
return concat buff, "\n" return concat buff, "\n"
@ -591,6 +590,14 @@ end);]])\format(concat(buffer, "\n"))
return "[#{concat [@value_to_nomsu(v) for v in *value], ", "}]" return "[#{concat [@value_to_nomsu(v) for v in *value], ", "}]"
else else
return "(d{#{concat ["#{@value_to_nomsu(k)}=#{@value_to_nomsu(v)}" for k,v in pairs(value)], "; "}})" return "(d{#{concat ["#{@value_to_nomsu(k)}=#{@value_to_nomsu(v)}" for k,v in pairs(value)], "; "}})"
when "string"
if value == "\n"
return "'\\n'"
elseif not value\find[["]] and not value\find"\n" and not value\find"\\"
return "\""..value.."\""
else
-- TODO: This might fail if it's being put inside a list or something
return '".."\n '..(@indent value)
else else
error("Unsupported value_to_nomsu type: #{type(value)}") error("Unsupported value_to_nomsu type: #{type(value)}")