Minor fix for value_to_nomsu
This commit is contained in:
parent
95f3f55ff2
commit
d5aa4e5298
@ -806,7 +806,7 @@ do
|
|||||||
local _accum_0 = { }
|
local _accum_0 = { }
|
||||||
local _len_0 = 1
|
local _len_0 = 1
|
||||||
for k, v in pairs(value) do
|
for k, v in pairs(value) do
|
||||||
_accum_0[_len_0] = tostring(self:value_to_nomsu(k)) .. "=" .. tostring(self:value_to_nomsu(v))
|
_accum_0[_len_0] = tostring(self:value_to_nomsu(k)) .. ":" .. tostring(self:value_to_nomsu(v))
|
||||||
_len_0 = _len_0 + 1
|
_len_0 = _len_0 + 1
|
||||||
end
|
end
|
||||||
return _accum_0
|
return _accum_0
|
||||||
|
@ -39,7 +39,6 @@ do
|
|||||||
-- Add compiler options for optimization level (compile-fast vs. run-fast, etc.)
|
-- Add compiler options for optimization level (compile-fast vs. run-fast, etc.)
|
||||||
-- Do a pass on all actions to enforce parameters-are-nouns heuristic
|
-- Do a pass on all actions to enforce parameters-are-nouns heuristic
|
||||||
-- Maybe do some sort of lazy definitions of actions that defer until they're used in code
|
-- Maybe do some sort of lazy definitions of actions that defer until they're used in code
|
||||||
-- Change nomsu:tree_to_lua() to use a table lookup instead of a switch statement
|
|
||||||
|
|
||||||
lpeg.setmaxstack 10000 -- whoa
|
lpeg.setmaxstack 10000 -- whoa
|
||||||
{:P,:R,:V,:S,:Cg,:C,:Cp,:B,:Cmt} = lpeg
|
{:P,:R,:V,:S,:Cg,:C,:Cp,:B,:Cmt} = lpeg
|
||||||
@ -580,12 +579,13 @@ class NomsuCompiler
|
|||||||
when "bool"
|
when "bool"
|
||||||
return value and "(yes)" or "(no)"
|
return value and "(yes)" or "(no)"
|
||||||
when "number"
|
when "number"
|
||||||
|
-- TODO: support NaN, inf, etc.?
|
||||||
return repr(value)
|
return repr(value)
|
||||||
when "table"
|
when "table"
|
||||||
if is_list(value)
|
if is_list(value)
|
||||||
return "[#{concat [@value_to_nomsu(v) for v in *value], ", "}]"
|
return "[#{concat [@value_to_nomsu(v) for v in *value], ", "}]"
|
||||||
else
|
else
|
||||||
return "{#{concat ["#{@value_to_nomsu(k)}=#{@value_to_nomsu(v)}" for k,v in pairs(value)], ", "}}"
|
return "{#{concat ["#{@value_to_nomsu(k)}:#{@value_to_nomsu(v)}" for k,v in pairs(value)], ", "}}"
|
||||||
when "string"
|
when "string"
|
||||||
if value == "\n"
|
if value == "\n"
|
||||||
return "'\\n'"
|
return "'\\n'"
|
||||||
|
Loading…
Reference in New Issue
Block a user