2018-11-08 15:23:22 -08:00
|
|
|
local NomsuCode
|
|
|
|
NomsuCode = require("code_obj").NomsuCode
|
|
|
|
local find, sub, match
|
|
|
|
do
|
|
|
|
local _obj_0 = string
|
|
|
|
find, sub, match = _obj_0.find, _obj_0.sub, _obj_0.match
|
|
|
|
end
|
|
|
|
local R, P, S
|
|
|
|
do
|
|
|
|
local _obj_0 = require('lpeg')
|
|
|
|
R, P, S = _obj_0.R, _obj_0.P, _obj_0.S
|
|
|
|
end
|
|
|
|
local re = require('re')
|
2019-03-04 14:25:56 -08:00
|
|
|
local pretty_error = require("pretty_errors")
|
2018-11-11 15:05:18 -08:00
|
|
|
local MAX_LINE = 80
|
2018-11-11 15:25:25 -08:00
|
|
|
local GOLDEN_RATIO = ((math.sqrt(5) - 1) / 2)
|
2018-11-08 15:23:22 -08:00
|
|
|
local utf8_char_patt = (R("\194\223") * R("\128\191") + R("\224\239") * R("\128\191") * R("\128\191") + R("\240\244") * R("\128\191") * R("\128\191") * R("\128\191"))
|
2019-02-05 15:45:27 -08:00
|
|
|
local operator_char = S("#'`~@^&*+=<>?/%!|\\-") + (P("\xE2") * (R("\x88\x8B") + R("\xA8\xAB")) * R("\128\191"))
|
|
|
|
local operator_patt = operator_char ^ 1 * -1
|
|
|
|
local identifier_patt = (R("az", "AZ", "09") + P("_") + (-operator_char * utf8_char_patt)) ^ 1 * -1
|
2018-11-08 15:23:22 -08:00
|
|
|
local is_operator
|
|
|
|
is_operator = function(s)
|
2019-02-06 14:31:14 -08:00
|
|
|
return type(s) == 'string' and not not operator_patt:match(s)
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
|
|
|
local is_identifier
|
|
|
|
is_identifier = function(s)
|
2019-02-06 14:31:14 -08:00
|
|
|
return type(s) == 'string' and not not identifier_patt:match(s)
|
2019-02-05 15:45:27 -08:00
|
|
|
end
|
|
|
|
local can_be_unary
|
|
|
|
can_be_unary = function(t)
|
2019-03-20 16:40:32 -07:00
|
|
|
return t.type == "Action" and #t == 2 and is_operator(t[1]) and type(t[2]) ~= 'string' and t[2].type ~= "Block" and not (t[2].type == "Number" and t[1] == "-")
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
|
|
|
local inline_escaper = re.compile("{~ (%utf8_char / ('\"' -> '\\\"') / ('\n' -> '\\n') / ('\t' -> '\\t') / ('\b' -> '\\b') / ('\a' -> '\\a') / ('\v' -> '\\v') / ('\f' -> '\\f') / ('\r' -> '\\r') / ('\\' -> '\\\\') / ([^ -~] -> escape) / .)* ~}", {
|
|
|
|
utf8_char = utf8_char_patt,
|
|
|
|
escape = (function(self)
|
|
|
|
return ("\\%03d"):format(self:byte())
|
|
|
|
end)
|
|
|
|
})
|
|
|
|
local inline_escape
|
|
|
|
inline_escape = function(s)
|
|
|
|
return inline_escaper:match(s)
|
|
|
|
end
|
|
|
|
local escaper = re.compile("{~ (%utf8_char / ('\\' -> '\\\\') / [\n\r\t -~] / (. -> escape))* ~}", {
|
|
|
|
utf8_char = utf8_char_patt,
|
|
|
|
escape = (function(self)
|
|
|
|
return ("\\%03d"):format(self:byte())
|
|
|
|
end)
|
|
|
|
})
|
|
|
|
local escape
|
|
|
|
escape = function(s)
|
|
|
|
return escaper:match(s)
|
|
|
|
end
|
|
|
|
local tree_to_inline_nomsu
|
|
|
|
tree_to_inline_nomsu = function(tree)
|
|
|
|
local _exp_0 = tree.type
|
|
|
|
if "Action" == _exp_0 then
|
2018-11-09 16:40:36 -08:00
|
|
|
local nomsu = NomsuCode:from(tree.source)
|
2019-02-05 15:45:27 -08:00
|
|
|
if can_be_unary(tree) then
|
|
|
|
nomsu:add(tree[1])
|
|
|
|
local arg_nomsu = tree_to_inline_nomsu(tree[2])
|
|
|
|
if tree[2].type == "MethodCall" or tree[2].type == "Action" then
|
|
|
|
arg_nomsu:parenthesize()
|
|
|
|
end
|
|
|
|
nomsu:add(arg_nomsu)
|
|
|
|
return nomsu
|
|
|
|
end
|
2019-01-07 21:39:23 -08:00
|
|
|
local num_args, num_words = 0, 0
|
2018-11-08 15:23:22 -08:00
|
|
|
for i, bit in ipairs(tree) do
|
|
|
|
if type(bit) == "string" then
|
2019-01-07 21:39:23 -08:00
|
|
|
num_words = num_words + 1
|
2018-11-09 17:48:35 -08:00
|
|
|
local clump_words
|
2018-11-09 17:48:56 -08:00
|
|
|
if type(tree[i - 1]) == 'string' then
|
2018-11-09 17:48:35 -08:00
|
|
|
clump_words = is_operator(bit) ~= is_operator(tree[i - 1])
|
|
|
|
else
|
2019-03-20 16:40:32 -07:00
|
|
|
clump_words = bit == "'"
|
2018-11-09 17:48:35 -08:00
|
|
|
end
|
2018-11-08 15:23:22 -08:00
|
|
|
if i > 1 and not clump_words then
|
2018-11-29 14:57:22 -08:00
|
|
|
nomsu:add(" ")
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
2018-11-29 14:57:22 -08:00
|
|
|
nomsu:add(bit)
|
2018-11-08 15:23:22 -08:00
|
|
|
else
|
2018-12-14 17:49:36 -08:00
|
|
|
num_args = num_args + 1
|
2018-11-08 15:23:22 -08:00
|
|
|
local arg_nomsu = tree_to_inline_nomsu(bit)
|
2019-03-20 16:40:32 -07:00
|
|
|
if tree[i + 1] == "'" and bit.type == "Action" and can_be_unary(bit) then
|
|
|
|
arg_nomsu:parenthesize()
|
|
|
|
end
|
2018-11-08 15:23:22 -08:00
|
|
|
if bit.type == "Block" then
|
2019-02-05 15:45:27 -08:00
|
|
|
if i ~= #tree then
|
|
|
|
if i > 1 then
|
|
|
|
nomsu:add(" ")
|
|
|
|
end
|
2018-11-08 15:23:22 -08:00
|
|
|
arg_nomsu:parenthesize()
|
|
|
|
end
|
|
|
|
else
|
2019-02-05 15:45:27 -08:00
|
|
|
if i > 1 then
|
2018-12-19 03:02:19 -08:00
|
|
|
nomsu:add(" ")
|
|
|
|
end
|
2019-02-05 15:45:27 -08:00
|
|
|
if bit.type == "MethodCall" then
|
|
|
|
arg_nomsu:parenthesize()
|
|
|
|
elseif bit.type == "Action" and not can_be_unary(bit) then
|
2018-11-08 15:23:22 -08:00
|
|
|
arg_nomsu:parenthesize()
|
|
|
|
end
|
|
|
|
end
|
2018-11-29 14:57:22 -08:00
|
|
|
nomsu:add(arg_nomsu)
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
|
|
|
end
|
2019-01-07 21:39:23 -08:00
|
|
|
if num_args == 1 and num_words == 0 then
|
2019-01-14 16:29:38 -08:00
|
|
|
nomsu:add("()")
|
2019-01-07 21:39:23 -08:00
|
|
|
end
|
2018-11-08 15:23:22 -08:00
|
|
|
return nomsu
|
2018-12-14 17:49:36 -08:00
|
|
|
elseif "MethodCall" == _exp_0 then
|
2018-12-14 20:09:15 -08:00
|
|
|
local target_nomsu = tree_to_inline_nomsu(tree[1])
|
2018-12-18 19:30:01 -08:00
|
|
|
if tree[1].type == "Block" then
|
2018-12-14 20:09:15 -08:00
|
|
|
target_nomsu:parenthesize()
|
|
|
|
end
|
2018-12-18 19:30:01 -08:00
|
|
|
local nomsu = NomsuCode:from(tree.source, target_nomsu, ", ")
|
2019-01-25 15:01:29 -08:00
|
|
|
if #tree > 2 then
|
|
|
|
nomsu:add("(")
|
|
|
|
end
|
2018-12-14 19:23:26 -08:00
|
|
|
for i = 2, #tree do
|
|
|
|
if i > 2 then
|
|
|
|
nomsu:add("; ")
|
|
|
|
end
|
|
|
|
nomsu:add(tree_to_inline_nomsu(tree[i]))
|
|
|
|
end
|
2019-01-25 15:01:29 -08:00
|
|
|
if #tree > 2 then
|
|
|
|
nomsu:add(")")
|
|
|
|
end
|
2018-12-14 19:23:26 -08:00
|
|
|
return nomsu
|
2018-11-08 15:23:22 -08:00
|
|
|
elseif "EscapedNomsu" == _exp_0 then
|
|
|
|
local inner_nomsu = tree_to_inline_nomsu(tree[1])
|
|
|
|
if not (tree[1].type == "List" or tree[1].type == "Dict" or tree[1].type == "Var") then
|
|
|
|
inner_nomsu:parenthesize()
|
|
|
|
end
|
2018-11-09 16:40:36 -08:00
|
|
|
return NomsuCode:from(tree.source, "\\", inner_nomsu)
|
2018-11-08 15:23:22 -08:00
|
|
|
elseif "Block" == _exp_0 then
|
2018-11-09 16:40:36 -08:00
|
|
|
local nomsu = NomsuCode:from(tree.source, ":")
|
2018-11-08 15:23:22 -08:00
|
|
|
for i, line in ipairs(tree) do
|
2018-11-29 14:57:22 -08:00
|
|
|
nomsu:add(i == 1 and " " or "; ")
|
|
|
|
nomsu:add(tree_to_inline_nomsu(line))
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
|
|
|
if #tree > 1 then
|
|
|
|
nomsu:parenthesize()
|
|
|
|
end
|
|
|
|
return nomsu
|
|
|
|
elseif "Text" == _exp_0 then
|
|
|
|
local add_text
|
|
|
|
add_text = function(nomsu, tree)
|
|
|
|
for i, bit in ipairs(tree) do
|
|
|
|
if type(bit) == 'string' then
|
|
|
|
local escaped = inline_escape(bit)
|
2018-11-29 14:57:22 -08:00
|
|
|
nomsu:add(inline_escape(bit))
|
2018-11-08 15:23:22 -08:00
|
|
|
elseif bit.type == "Text" then
|
|
|
|
add_text(nomsu, bit)
|
|
|
|
else
|
|
|
|
local interp_nomsu = tree_to_inline_nomsu(bit)
|
|
|
|
if bit.type ~= "Var" and bit.type ~= "List" and bit.type ~= "Dict" then
|
|
|
|
interp_nomsu:parenthesize()
|
2019-01-10 16:33:37 -08:00
|
|
|
elseif bit.type == "Var" and type(bit[1]) == 'string' and type(tree[i + 1]) == 'string' and not match(tree[i + 1], "^[ \n\t,.:;#(){}[%]]") then
|
2018-11-08 15:23:22 -08:00
|
|
|
interp_nomsu:parenthesize()
|
|
|
|
end
|
2018-11-29 14:57:22 -08:00
|
|
|
nomsu:add("\\", interp_nomsu)
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-11-09 16:40:36 -08:00
|
|
|
local nomsu = NomsuCode:from(tree.source)
|
2018-11-08 15:23:22 -08:00
|
|
|
add_text(nomsu, tree)
|
2018-11-09 16:40:36 -08:00
|
|
|
return NomsuCode:from(tree.source, '"', nomsu, '"')
|
2018-11-08 15:23:22 -08:00
|
|
|
elseif "List" == _exp_0 or "Dict" == _exp_0 then
|
2018-11-09 16:40:36 -08:00
|
|
|
local nomsu = NomsuCode:from(tree.source, (tree.type == "List" and "[" or "{"))
|
2018-11-08 15:23:22 -08:00
|
|
|
for i, item in ipairs(tree) do
|
|
|
|
if i > 1 then
|
2018-11-29 14:57:22 -08:00
|
|
|
nomsu:add(", ")
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
2018-12-18 19:30:01 -08:00
|
|
|
local item_nomsu = tree_to_inline_nomsu(item, true)
|
2019-02-05 15:45:27 -08:00
|
|
|
if item.type == "MethodCall" or (item.type == "Block" and i < #tree) then
|
2018-12-18 19:30:01 -08:00
|
|
|
item_nomsu:parenthesize()
|
|
|
|
end
|
|
|
|
nomsu:add(item_nomsu)
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
2018-11-29 14:57:22 -08:00
|
|
|
nomsu:add(tree.type == "List" and "]" or "}")
|
2018-11-08 15:23:22 -08:00
|
|
|
return nomsu
|
|
|
|
elseif "DictEntry" == _exp_0 then
|
|
|
|
local key, value = tree[1], tree[2]
|
2018-12-18 19:30:01 -08:00
|
|
|
local nomsu = NomsuCode:from(tree.source)
|
|
|
|
if key.type ~= "Index" then
|
|
|
|
key = {
|
|
|
|
type = "Index",
|
|
|
|
source = key.source,
|
|
|
|
key
|
|
|
|
}
|
|
|
|
end
|
|
|
|
nomsu:add(tree_to_inline_nomsu(key))
|
2018-11-08 15:23:22 -08:00
|
|
|
if value then
|
2018-12-18 19:30:01 -08:00
|
|
|
nomsu:add(" = ")
|
2018-11-08 15:23:22 -08:00
|
|
|
local value_nomsu = tree_to_inline_nomsu(value)
|
2018-12-18 19:30:01 -08:00
|
|
|
if value.type == "Block" or value.type == "Action" or value.type == "MethodCall" then
|
2018-11-08 15:23:22 -08:00
|
|
|
value_nomsu:parenthesize()
|
|
|
|
end
|
2018-11-29 14:57:22 -08:00
|
|
|
nomsu:add(value_nomsu)
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
|
|
|
return nomsu
|
2018-12-18 19:30:01 -08:00
|
|
|
elseif "Index" == _exp_0 then
|
|
|
|
local key = tree[1]
|
|
|
|
local nomsu = NomsuCode:from(key.source, ".")
|
|
|
|
local key_nomsu
|
|
|
|
if key.type == "Text" and #key == 1 and is_identifier(key[1]) then
|
|
|
|
key_nomsu = key[1]
|
|
|
|
else
|
|
|
|
key_nomsu = tree_to_inline_nomsu(key)
|
|
|
|
end
|
2018-12-30 23:56:28 -08:00
|
|
|
local _exp_1 = key.type
|
|
|
|
if "Block" == _exp_1 or "Action" == _exp_1 or "MethodCall" == _exp_1 or "IndexChain" == _exp_1 then
|
2018-12-18 19:30:01 -08:00
|
|
|
key_nomsu:parenthesize()
|
|
|
|
end
|
|
|
|
return NomsuCode:from(key.source, ".", key_nomsu)
|
2018-11-08 15:23:22 -08:00
|
|
|
elseif "IndexChain" == _exp_0 then
|
2018-11-09 16:40:36 -08:00
|
|
|
local nomsu = NomsuCode:from(tree.source)
|
2018-12-30 23:56:28 -08:00
|
|
|
local target = tree[1]
|
|
|
|
local target_nomsu = tree_to_inline_nomsu(target)
|
|
|
|
local _exp_1 = target.type
|
2019-01-15 15:53:31 -08:00
|
|
|
if "Action" == _exp_1 or "MethodCall" == _exp_1 or "EscapedNomsu" == _exp_1 then
|
2018-12-30 23:56:28 -08:00
|
|
|
target_nomsu:parenthesize()
|
|
|
|
elseif "Number" == _exp_1 then
|
|
|
|
if target_nomsu:text():match("%.") then
|
|
|
|
target_nomsu:parenthesize()
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
2018-12-30 23:56:28 -08:00
|
|
|
end
|
|
|
|
nomsu:add(target_nomsu)
|
|
|
|
for i = 2, #tree do
|
|
|
|
if tree[i].type ~= "Index" then
|
|
|
|
tree[i] = {
|
|
|
|
type = "Index",
|
|
|
|
source = tree[i].source,
|
|
|
|
tree[i]
|
|
|
|
}
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
2018-12-30 23:56:28 -08:00
|
|
|
nomsu:add(tree_to_inline_nomsu(tree[i]))
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
|
|
|
return nomsu
|
|
|
|
elseif "Number" == _exp_0 then
|
2019-02-06 14:31:14 -08:00
|
|
|
local n = tostring(tree[1])
|
2018-11-11 15:25:25 -08:00
|
|
|
local s
|
2019-02-06 14:31:14 -08:00
|
|
|
if n:match("^-*0x") then
|
|
|
|
s = n:upper():gsub("0X", "0x")
|
|
|
|
elseif tree.hex and tonumber((n:gsub("_", ""))) < 0 then
|
2018-11-11 15:25:25 -08:00
|
|
|
s = ("-0x%X"):format(-tree[1])
|
|
|
|
elseif tree.hex then
|
|
|
|
s = ("0x%X"):format(tree[1])
|
|
|
|
else
|
2019-02-06 14:31:14 -08:00
|
|
|
s = n
|
2018-11-11 15:25:25 -08:00
|
|
|
end
|
|
|
|
return NomsuCode:from(tree.source, s)
|
2018-11-08 15:23:22 -08:00
|
|
|
elseif "Var" == _exp_0 then
|
2018-12-14 19:23:26 -08:00
|
|
|
local varname = tree[1]
|
2019-01-01 15:52:56 -08:00
|
|
|
if type(varname) == "string" then
|
2018-12-14 17:49:36 -08:00
|
|
|
return NomsuCode:from(tree.source, "$", varname)
|
|
|
|
else
|
2019-01-01 15:52:56 -08:00
|
|
|
return NomsuCode:from(tree.source, "$(", tree_to_inline_nomsu(varname), ")")
|
2018-12-14 17:49:36 -08:00
|
|
|
end
|
2018-11-08 15:23:22 -08:00
|
|
|
elseif "FileChunks" == _exp_0 then
|
|
|
|
return error("Can't inline a FileChunks")
|
|
|
|
elseif "Comment" == _exp_0 then
|
2018-11-09 17:02:39 -08:00
|
|
|
return NomsuCode:from(tree.source)
|
2018-11-08 15:23:22 -08:00
|
|
|
elseif "Error" == _exp_0 then
|
2019-03-04 14:25:56 -08:00
|
|
|
local err_msg = pretty_error({
|
|
|
|
title = "Parse error",
|
|
|
|
error = tree.error,
|
|
|
|
hint = tree.hint,
|
|
|
|
source = tree:get_source_file(),
|
|
|
|
start = tree.source.start,
|
|
|
|
stop = tree.source.stop,
|
|
|
|
filename = tree.source.filename
|
|
|
|
})
|
|
|
|
return error(err_msg)
|
2018-11-08 15:23:22 -08:00
|
|
|
else
|
|
|
|
return error("Unknown type: " .. tostring(tree.type))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
local tree_to_nomsu
|
|
|
|
tree_to_nomsu = function(tree)
|
2018-11-09 16:40:36 -08:00
|
|
|
local nomsu = NomsuCode:from(tree.source)
|
2018-11-08 15:23:22 -08:00
|
|
|
local recurse
|
2018-12-30 19:04:34 -08:00
|
|
|
recurse = function(t, argnum)
|
|
|
|
if argnum == nil then
|
|
|
|
argnum = nil
|
|
|
|
end
|
2018-11-08 15:23:22 -08:00
|
|
|
local space = MAX_LINE - nomsu:trailing_line_len()
|
2018-11-11 15:05:18 -08:00
|
|
|
local try_inline = true
|
2018-11-08 15:23:22 -08:00
|
|
|
for subtree in coroutine.wrap(function()
|
2019-02-05 15:45:27 -08:00
|
|
|
return (t:with(coroutine.yield) and nil)
|
2018-11-08 15:23:22 -08:00
|
|
|
end) do
|
2018-12-30 23:56:28 -08:00
|
|
|
local _exp_0 = subtree.type
|
|
|
|
if "Comment" == _exp_0 then
|
2018-12-14 20:53:00 -08:00
|
|
|
try_inline = false
|
2018-12-30 23:56:28 -08:00
|
|
|
elseif "Block" == _exp_0 then
|
2018-11-10 00:29:08 -08:00
|
|
|
if #subtree > 1 then
|
2018-11-11 15:05:18 -08:00
|
|
|
try_inline = false
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
2018-12-30 23:56:28 -08:00
|
|
|
elseif "Text" == _exp_0 then
|
|
|
|
local indented = tree_to_nomsu(subtree)
|
|
|
|
local indented_lines
|
|
|
|
do
|
|
|
|
local _accum_0 = { }
|
|
|
|
local _len_0 = 1
|
|
|
|
local _list_0 = indented:text():lines()
|
|
|
|
for _index_0 = 1, #_list_0 do
|
|
|
|
local line = _list_0[_index_0]
|
|
|
|
if line:match("^ +([^ ].*)") then
|
|
|
|
_accum_0[_len_0] = line
|
|
|
|
_len_0 = _len_0 + 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
indented_lines = _accum_0
|
|
|
|
end
|
|
|
|
for i = #indented_lines, 1, -1 do
|
|
|
|
if indented_lines[i]:match("^ *\\;$") then
|
|
|
|
table.remove(indented_lines, i)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if #indented_lines > 1 or (#indented_lines == 1 and #indented_lines[1] > MAX_LINE + 8) then
|
|
|
|
try_inline = false
|
|
|
|
end
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
|
|
|
end
|
2018-11-11 15:05:18 -08:00
|
|
|
local inline_nomsu
|
|
|
|
if try_inline then
|
|
|
|
inline_nomsu = tree_to_inline_nomsu(t)
|
2019-02-05 15:45:27 -08:00
|
|
|
if t.type == "MethodCall" then
|
|
|
|
inline_nomsu:parenthesize()
|
|
|
|
elseif t.type == "Action" and not can_be_unary(t) then
|
2018-12-30 23:56:28 -08:00
|
|
|
inline_nomsu:parenthesize()
|
|
|
|
end
|
2018-11-11 15:05:18 -08:00
|
|
|
if #inline_nomsu:text() <= space or #inline_nomsu:text() <= 8 then
|
2018-12-19 03:02:19 -08:00
|
|
|
if t.type ~= "Text" then
|
|
|
|
return inline_nomsu
|
|
|
|
end
|
2018-12-14 17:49:36 -08:00
|
|
|
end
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
|
|
|
local indented = tree_to_nomsu(t)
|
2018-12-14 17:49:36 -08:00
|
|
|
if t.type == "Action" or t.type == "MethodCall" then
|
2018-11-08 15:23:22 -08:00
|
|
|
if indented:is_multiline() then
|
2019-03-04 14:25:56 -08:00
|
|
|
if argnum == nil or argnum == 1 then
|
|
|
|
return NomsuCode:from(t.source, "(\n ", indented, "\n)")
|
|
|
|
else
|
|
|
|
return NomsuCode:from(t.source, "\n ", indented)
|
2018-12-30 19:04:34 -08:00
|
|
|
end
|
|
|
|
elseif argnum and argnum > 1 then
|
|
|
|
return NomsuCode:from(t.source, "\n ", indented)
|
2018-11-08 15:23:22 -08:00
|
|
|
else
|
|
|
|
indented:parenthesize()
|
|
|
|
end
|
|
|
|
end
|
2018-12-19 03:02:19 -08:00
|
|
|
local indented_lines
|
|
|
|
do
|
|
|
|
local _accum_0 = { }
|
|
|
|
local _len_0 = 1
|
|
|
|
local _list_0 = indented:text():lines()
|
|
|
|
for _index_0 = 1, #_list_0 do
|
|
|
|
local line = _list_0[_index_0]
|
2018-12-30 23:56:28 -08:00
|
|
|
if line:match("^ +([^ ].*)") then
|
2018-12-19 03:02:19 -08:00
|
|
|
_accum_0[_len_0] = line
|
|
|
|
_len_0 = _len_0 + 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
indented_lines = _accum_0
|
|
|
|
end
|
2018-12-30 23:56:28 -08:00
|
|
|
if t.type == "Text" then
|
|
|
|
for i = #indented_lines, 1, -1 do
|
|
|
|
if indented_lines[i]:match("^ *\\;$") then
|
|
|
|
table.remove(indented_lines, i)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if inline_nomsu and (#inline_nomsu:text() < MAX_LINE or #inline_nomsu:text() <= space) and #indented_lines <= 1 then
|
2018-11-11 15:05:18 -08:00
|
|
|
return inline_nomsu
|
|
|
|
end
|
2018-11-08 15:23:22 -08:00
|
|
|
return indented
|
|
|
|
end
|
|
|
|
local _exp_0 = tree.type
|
|
|
|
if "FileChunks" == _exp_0 then
|
2018-11-09 17:32:48 -08:00
|
|
|
if tree.shebang then
|
2019-02-05 15:45:27 -08:00
|
|
|
nomsu:add(tree.shebang, "\n")
|
2018-11-09 17:32:48 -08:00
|
|
|
end
|
2018-11-08 15:23:22 -08:00
|
|
|
for chunk_no, chunk in ipairs(tree) do
|
|
|
|
if chunk_no > 1 then
|
2018-11-29 14:57:22 -08:00
|
|
|
nomsu:add("\n\n" .. tostring(("~"):rep(80)) .. "\n\n")
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
|
|
|
if chunk.type == "Block" then
|
2018-11-29 14:57:22 -08:00
|
|
|
nomsu:add(NomsuCode:from(chunk.source, table.unpack(tree_to_nomsu(chunk).bits, 2)))
|
2018-11-08 15:23:22 -08:00
|
|
|
else
|
2018-11-29 14:57:22 -08:00
|
|
|
nomsu:add(tree_to_nomsu(chunk))
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
return nomsu
|
|
|
|
elseif "Action" == _exp_0 then
|
2019-02-05 15:45:27 -08:00
|
|
|
if can_be_unary(tree) and not can_be_unary(tree[2]) then
|
|
|
|
nomsu:add(tree[1])
|
|
|
|
nomsu:add(recurse(tree[2]))
|
|
|
|
return nomsu
|
|
|
|
end
|
2018-11-08 15:23:22 -08:00
|
|
|
local next_space = ""
|
2018-11-10 00:29:08 -08:00
|
|
|
local word_buffer = { }
|
2019-01-07 21:39:23 -08:00
|
|
|
local num_args, num_words = 0, 0
|
2018-11-08 15:23:22 -08:00
|
|
|
for i, bit in ipairs(tree) do
|
2018-11-10 00:29:08 -08:00
|
|
|
local _continue_0 = false
|
|
|
|
repeat
|
|
|
|
if type(bit) == "string" then
|
2019-01-07 21:39:23 -08:00
|
|
|
num_words = num_words + 1
|
2018-11-10 00:29:08 -08:00
|
|
|
if #word_buffer > 0 and is_operator(bit) == is_operator(word_buffer[#word_buffer]) then
|
|
|
|
table.insert(word_buffer, " ")
|
2018-11-09 19:32:13 -08:00
|
|
|
end
|
2018-11-10 00:29:08 -08:00
|
|
|
table.insert(word_buffer, bit)
|
|
|
|
_continue_0 = true
|
|
|
|
break
|
|
|
|
end
|
|
|
|
if #word_buffer > 0 then
|
|
|
|
local words = table.concat(word_buffer)
|
|
|
|
if next_space == " " then
|
2018-11-11 15:05:18 -08:00
|
|
|
if nomsu:trailing_line_len() + #words > MAX_LINE and nomsu:trailing_line_len() > 8 then
|
2018-12-18 19:30:01 -08:00
|
|
|
next_space = "\n.."
|
2018-11-10 00:29:08 -08:00
|
|
|
elseif word_buffer[1] == "'" then
|
|
|
|
next_space = ""
|
|
|
|
end
|
2018-11-09 19:32:13 -08:00
|
|
|
end
|
2018-11-29 14:57:22 -08:00
|
|
|
nomsu:add(next_space, words)
|
2018-11-10 00:29:08 -08:00
|
|
|
word_buffer = { }
|
|
|
|
next_space = " "
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
2018-12-14 17:49:36 -08:00
|
|
|
num_args = num_args + 1
|
2018-12-30 19:04:34 -08:00
|
|
|
local bit_nomsu = recurse(bit, i)
|
2019-03-20 16:40:32 -07:00
|
|
|
if tree[i + 1] == "'" and bit.type == "Action" and not bit_nomsu:is_multiline() and can_be_unary(bit) then
|
|
|
|
bit_nomsu:parenthesize()
|
|
|
|
end
|
2018-12-18 19:30:01 -08:00
|
|
|
if bit.type == "Block" then
|
2018-12-30 23:56:28 -08:00
|
|
|
if not bit_nomsu:is_multiline() and (#bit_nomsu:text() > nomsu:trailing_line_len() * GOLDEN_RATIO and #bit_nomsu:text() > 8) or #bit_nomsu:text() + nomsu:trailing_line_len() > MAX_LINE then
|
2018-11-10 00:29:08 -08:00
|
|
|
bit_nomsu = tree_to_nomsu(bit)
|
|
|
|
end
|
2018-12-18 19:30:01 -08:00
|
|
|
elseif (not bit_nomsu:is_multiline() and nomsu:trailing_line_len() + #bit_nomsu:text() > MAX_LINE and nomsu:trailing_line_len() > 8) then
|
|
|
|
if next_space == " " and #bit_nomsu:text() < MAX_LINE then
|
2018-12-30 23:56:28 -08:00
|
|
|
if i == #tree then
|
|
|
|
bit_nomsu = tree_to_inline_nomsu(bit)
|
|
|
|
next_space = "\n "
|
|
|
|
elseif bit.type == "List" or bit.type == "Dict" then
|
|
|
|
bit_nomsu = tree_to_nomsu(bit)
|
|
|
|
else
|
|
|
|
next_space = "\n.."
|
|
|
|
end
|
2018-12-18 19:30:01 -08:00
|
|
|
elseif bit.type == 'Action' or bit.type == "MethodCall" then
|
2018-12-30 19:04:34 -08:00
|
|
|
bit_nomsu = NomsuCode:from(bit.source, "\n ", tree_to_nomsu(bit))
|
2018-11-09 17:43:06 -08:00
|
|
|
else
|
2018-12-18 19:30:01 -08:00
|
|
|
bit_nomsu = tree_to_nomsu(bit)
|
2018-11-09 17:43:06 -08:00
|
|
|
end
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
2018-12-30 19:04:34 -08:00
|
|
|
if not (next_space == " " and bit_nomsu:text():match("^[:\n]")) then
|
2018-11-29 14:57:22 -08:00
|
|
|
nomsu:add(next_space)
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
2018-11-29 14:57:22 -08:00
|
|
|
nomsu:add(bit_nomsu)
|
2018-12-30 23:56:28 -08:00
|
|
|
next_space = (bit.type == "Block" or bit_nomsu:text():matches("\n [^\n]*$")) and "\n.." or " "
|
2018-11-10 00:29:08 -08:00
|
|
|
_continue_0 = true
|
|
|
|
until true
|
|
|
|
if not _continue_0 then
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if #word_buffer > 0 then
|
|
|
|
local words = table.concat(word_buffer)
|
|
|
|
if next_space == " " then
|
2019-02-06 14:31:14 -08:00
|
|
|
if nomsu:trailing_line_len() + #words > MAX_LINE + 8 and nomsu:trailing_line_len() > 8 then
|
2018-12-18 19:30:01 -08:00
|
|
|
next_space = "\n.."
|
2018-11-10 00:29:08 -08:00
|
|
|
elseif word_buffer[1] == "'" then
|
|
|
|
next_space = ""
|
|
|
|
end
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
2018-11-29 14:57:22 -08:00
|
|
|
nomsu:add(next_space, words)
|
2018-11-17 14:38:05 -08:00
|
|
|
next_space = " "
|
|
|
|
end
|
2019-01-07 21:39:23 -08:00
|
|
|
if num_args == 1 and num_words == 0 then
|
|
|
|
if next_space ~= " " then
|
2019-01-14 16:29:38 -08:00
|
|
|
nomsu:add(next_space)
|
2019-01-07 21:39:23 -08:00
|
|
|
end
|
2019-01-14 16:29:38 -08:00
|
|
|
nomsu:add("()")
|
2019-01-07 21:39:23 -08:00
|
|
|
end
|
2018-12-14 17:49:36 -08:00
|
|
|
return nomsu
|
|
|
|
elseif "MethodCall" == _exp_0 then
|
|
|
|
local target_nomsu = recurse(tree[1])
|
|
|
|
if tree[1].type == "Block" and not target_nomsu:is_multiline() then
|
|
|
|
target_nomsu:parenthesize()
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
2018-12-18 19:30:01 -08:00
|
|
|
nomsu:add(target_nomsu, ", ")
|
2018-12-14 19:23:26 -08:00
|
|
|
local inner_nomsu = NomsuCode()
|
|
|
|
for i = 2, #tree do
|
|
|
|
if i > 2 then
|
|
|
|
inner_nomsu:add("\n")
|
|
|
|
end
|
|
|
|
inner_nomsu:add(tree_to_nomsu(tree[i]))
|
|
|
|
end
|
|
|
|
if #tree == 2 and nomsu:trailing_line_len() + #inner_nomsu:text():match("^[^\n]*") < MAX_LINE then
|
|
|
|
nomsu:add(inner_nomsu)
|
|
|
|
else
|
|
|
|
nomsu:add("\n ", inner_nomsu)
|
|
|
|
end
|
2018-11-08 15:23:22 -08:00
|
|
|
return nomsu
|
|
|
|
elseif "EscapedNomsu" == _exp_0 then
|
2018-11-09 17:20:36 -08:00
|
|
|
nomsu = recurse(tree[1])
|
|
|
|
if tree[1].type == 'Block' and not nomsu:is_multiline() then
|
|
|
|
nomsu:parenthesize()
|
|
|
|
end
|
2018-11-09 17:43:06 -08:00
|
|
|
return NomsuCode:from(tree.source, "\\", nomsu)
|
2018-11-08 15:23:22 -08:00
|
|
|
elseif "Block" == _exp_0 then
|
2018-11-10 00:29:08 -08:00
|
|
|
local prev_line, needs_space = nil, { }
|
2018-11-08 15:23:22 -08:00
|
|
|
for i, line in ipairs(tree) do
|
|
|
|
local line_nomsu = tree_to_nomsu(line)
|
2018-11-10 00:29:08 -08:00
|
|
|
if i > 1 then
|
2018-11-29 14:57:22 -08:00
|
|
|
nomsu:add("\n")
|
2018-11-10 00:29:08 -08:00
|
|
|
if tree[i - 1].type ~= "Comment" then
|
2019-01-14 16:29:38 -08:00
|
|
|
needs_space[i] = (line_nomsu:is_multiline() and prev_line:is_multiline())
|
2019-03-27 14:40:48 -07:00
|
|
|
if (tree[i].type == "Comment" or needs_space[i] or needs_space[i - 1] or prev_line:text():match("\n [^\n]*$")) then
|
2018-11-29 14:57:22 -08:00
|
|
|
nomsu:add("\n")
|
2018-11-10 00:29:08 -08:00
|
|
|
end
|
|
|
|
end
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
2018-11-29 14:57:22 -08:00
|
|
|
nomsu:add(line_nomsu)
|
2018-11-10 00:29:08 -08:00
|
|
|
prev_line = line_nomsu
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
2018-11-09 16:40:36 -08:00
|
|
|
return NomsuCode:from(tree.source, ":\n ", nomsu)
|
2018-11-08 15:23:22 -08:00
|
|
|
elseif "Text" == _exp_0 then
|
2018-12-18 19:30:01 -08:00
|
|
|
local max_line = MAX_LINE + 8
|
2018-11-08 15:23:22 -08:00
|
|
|
local add_text
|
|
|
|
add_text = function(tree)
|
|
|
|
for i, bit in ipairs(tree) do
|
|
|
|
if type(bit) == 'string' then
|
|
|
|
bit = escape(bit)
|
|
|
|
for j, line in ipairs(bit:lines()) do
|
|
|
|
if j > 1 then
|
2018-12-18 19:30:01 -08:00
|
|
|
if nomsu:text():match(" $") then
|
|
|
|
nomsu:add("\\;")
|
|
|
|
end
|
2018-11-29 14:57:22 -08:00
|
|
|
nomsu:add("\n")
|
2018-11-08 15:23:22 -08:00
|
|
|
elseif #line > 10 and nomsu:trailing_line_len() > max_line then
|
2018-11-29 14:57:22 -08:00
|
|
|
nomsu:add("\\\n..")
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
|
|
|
while #line > 0 do
|
|
|
|
local space = max_line - nomsu:trailing_line_len()
|
|
|
|
local split = find(line, "[%p%s]", space)
|
2019-01-15 15:53:31 -08:00
|
|
|
if not split or split > space + 16 then
|
|
|
|
split = space + 16
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
2019-01-15 15:53:31 -08:00
|
|
|
if #line - split < 16 then
|
2018-11-08 15:23:22 -08:00
|
|
|
split = #line
|
|
|
|
end
|
|
|
|
local bite
|
|
|
|
bite, line = sub(line, 1, split), sub(line, split + 1, -1)
|
2018-11-29 14:57:22 -08:00
|
|
|
nomsu:add(bite)
|
2018-11-08 15:23:22 -08:00
|
|
|
if #line > 0 then
|
2018-11-29 14:57:22 -08:00
|
|
|
nomsu:add("\\\n..")
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
elseif bit.type == "Text" then
|
|
|
|
add_text(bit)
|
|
|
|
else
|
2018-11-29 14:57:22 -08:00
|
|
|
nomsu:add("\\")
|
2018-11-08 15:23:22 -08:00
|
|
|
local interp_nomsu = recurse(bit)
|
2019-01-01 17:15:51 -08:00
|
|
|
if interp_nomsu:is_multiline() then
|
|
|
|
local curr_indent = nomsu:text():match("\n( *)[^\n]*$") or nomsu:text():match("^( *)")
|
|
|
|
interp_nomsu = NomsuCode((interp_nomsu:text():gsub("\n", "\n" .. curr_indent)))
|
|
|
|
else
|
2018-12-30 23:56:28 -08:00
|
|
|
local space = max_line - nomsu:trailing_line_len()
|
2018-11-08 15:23:22 -08:00
|
|
|
if bit.type == "Var" then
|
2018-12-14 20:16:18 -08:00
|
|
|
local next_str = tree[i + 1]
|
|
|
|
while type(next_str) == 'table' and next_str.type == 'Text' do
|
|
|
|
next_str = next_str[1]
|
|
|
|
end
|
|
|
|
if type(next_str) == 'string' and not match(next_str, "^[ \n\t,.:;#(){}[%]]") then
|
2018-11-08 15:23:22 -08:00
|
|
|
interp_nomsu:parenthesize()
|
|
|
|
end
|
2018-12-30 23:56:28 -08:00
|
|
|
elseif #interp_nomsu:text() > space then
|
|
|
|
local interp_nomsu2
|
|
|
|
if bit.type == "Action" or bit.type == "MethodCall" then
|
|
|
|
interp_nomsu2 = NomsuCode:from(bit.source, "(\n ", tree_to_nomsu(bit), "\n)")
|
|
|
|
else
|
|
|
|
interp_nomsu2 = tree_to_nomsu(bit)
|
|
|
|
end
|
|
|
|
if #interp_nomsu2:text():lines() > 3 or #interp_nomsu2:text() >= MAX_LINE * GOLDEN_RATIO then
|
2019-01-01 17:15:51 -08:00
|
|
|
local curr_indent = nomsu:text():match("\n( *)[^\n]*$") or nomsu:text():match("^( *)")
|
|
|
|
interp_nomsu2 = NomsuCode((interp_nomsu2:text():gsub("\n", "\n" .. curr_indent)))
|
2018-12-30 23:56:28 -08:00
|
|
|
interp_nomsu = interp_nomsu2
|
|
|
|
else
|
|
|
|
nomsu:add("\n..\\")
|
|
|
|
if bit.type == "EscapedNomsu" or bit.type == "Block" or bit.type == "IndexChain" then
|
|
|
|
interp_nomsu:parenthesize()
|
|
|
|
end
|
|
|
|
end
|
2018-11-11 18:52:45 -08:00
|
|
|
elseif bit.type == "EscapedNomsu" or bit.type == "Block" or bit.type == "IndexChain" then
|
2018-11-08 15:23:22 -08:00
|
|
|
interp_nomsu:parenthesize()
|
2019-03-20 16:40:32 -07:00
|
|
|
elseif bit.type == "Action" and can_be_unary(bit) then
|
|
|
|
interp_nomsu:parenthesize()
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
|
|
|
end
|
2018-11-29 14:57:22 -08:00
|
|
|
nomsu:add(interp_nomsu)
|
2018-12-18 19:30:01 -08:00
|
|
|
if interp_nomsu:is_multiline() and bit.type == "Block" then
|
2018-11-29 14:57:22 -08:00
|
|
|
nomsu:add("\n..")
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
add_text(tree)
|
2018-12-18 19:30:01 -08:00
|
|
|
if nomsu:text():match(" $") then
|
|
|
|
nomsu:add("\\;")
|
|
|
|
end
|
2018-12-19 03:02:19 -08:00
|
|
|
return NomsuCode:from(tree.source, '("\n ', nomsu, '\n")')
|
2018-11-08 15:23:22 -08:00
|
|
|
elseif "List" == _exp_0 or "Dict" == _exp_0 then
|
|
|
|
if #tree == 0 then
|
2018-11-29 14:57:22 -08:00
|
|
|
nomsu:add(tree.type == "List" and "[]" or "{}")
|
2018-11-08 15:23:22 -08:00
|
|
|
return nomsu
|
|
|
|
end
|
2019-03-04 14:25:56 -08:00
|
|
|
if #tree == 1 and tree[1].type == "Block" then
|
|
|
|
local block_lua = recurse(tree[1])
|
|
|
|
if block_lua:is_multiline() then
|
|
|
|
block_lua:add("\n")
|
|
|
|
end
|
|
|
|
if tree.type == "List" then
|
|
|
|
return NomsuCode:from(tree.source, "[", block_lua, "]")
|
|
|
|
else
|
|
|
|
return NomsuCode:from(tree.source, "{", block_lua, "}")
|
|
|
|
end
|
|
|
|
end
|
2018-11-11 15:05:18 -08:00
|
|
|
local sep = ''
|
2019-01-18 14:28:45 -08:00
|
|
|
local prev_item, needs_space = nil, { }
|
2018-11-08 15:23:22 -08:00
|
|
|
for i, item in ipairs(tree) do
|
2018-12-18 19:30:01 -08:00
|
|
|
local item_nomsu
|
|
|
|
if item.type == 'MethodCall' then
|
2018-11-08 15:23:22 -08:00
|
|
|
item_nomsu = recurse(item)
|
2018-12-18 19:30:01 -08:00
|
|
|
elseif item.type == 'Comment' then
|
2018-11-11 15:05:18 -08:00
|
|
|
item_nomsu = tree_to_nomsu(item)
|
2018-12-18 19:30:01 -08:00
|
|
|
if i > 1 then
|
|
|
|
sep = '\n'
|
|
|
|
end
|
2018-12-31 01:36:48 -08:00
|
|
|
elseif item.type == 'Block' and #item == 1 then
|
|
|
|
item_nomsu = tree_to_nomsu(item[1])
|
|
|
|
item_nomsu:prepend(": ")
|
|
|
|
if i > 1 then
|
|
|
|
sep = '\n'
|
|
|
|
end
|
2018-12-18 19:30:01 -08:00
|
|
|
else
|
|
|
|
item_nomsu = tree_to_inline_nomsu(item)
|
2019-01-07 21:39:23 -08:00
|
|
|
if nomsu:trailing_line_len() + #item_nomsu:text() > MAX_LINE then
|
2018-12-30 23:56:28 -08:00
|
|
|
if i > 1 then
|
|
|
|
sep = '\n'
|
|
|
|
end
|
2019-01-14 16:29:38 -08:00
|
|
|
item_nomsu = item.type == "Action" and tree_to_nomsu(item) or recurse(item)
|
2018-12-18 19:30:01 -08:00
|
|
|
end
|
2018-11-11 15:05:18 -08:00
|
|
|
end
|
2018-11-29 14:57:22 -08:00
|
|
|
nomsu:add(sep)
|
2019-01-18 14:28:45 -08:00
|
|
|
if sep == '\n' then
|
2019-03-27 14:40:48 -07:00
|
|
|
if i > 1 and tree[i - 1].type ~= "Comment" then
|
2019-01-18 14:28:45 -08:00
|
|
|
needs_space[i] = (item_nomsu:is_multiline() and prev_item:is_multiline())
|
2019-03-27 14:40:48 -07:00
|
|
|
if (tree[i].type == "Comment" or needs_space[i] or needs_space[i - 1] or prev_item:text():match("\n [^\n]*$")) then
|
2019-01-18 14:28:45 -08:00
|
|
|
nomsu:add("\n")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-11-29 14:57:22 -08:00
|
|
|
nomsu:add(item_nomsu)
|
2019-01-18 14:28:45 -08:00
|
|
|
prev_item = item_nomsu
|
2018-12-31 01:36:48 -08:00
|
|
|
if item_nomsu:is_multiline() or item.type == 'Comment' or item.type == "Block" or nomsu:trailing_line_len() + #tostring(item_nomsu) >= MAX_LINE then
|
2018-11-11 15:05:18 -08:00
|
|
|
sep = '\n'
|
|
|
|
else
|
|
|
|
sep = ', '
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
if tree.type == "List" then
|
2018-12-18 19:30:01 -08:00
|
|
|
return NomsuCode:from(tree.source, "[\n ", nomsu, "\n]")
|
2018-11-08 15:23:22 -08:00
|
|
|
else
|
2018-12-18 19:30:01 -08:00
|
|
|
return NomsuCode:from(tree.source, "{\n ", nomsu, "\n}")
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
|
|
|
elseif "DictEntry" == _exp_0 then
|
|
|
|
local key, value = tree[1], tree[2]
|
2018-12-18 19:30:01 -08:00
|
|
|
nomsu = NomsuCode:from(tree.source)
|
|
|
|
if key.type ~= "Index" then
|
|
|
|
key = {
|
|
|
|
type = "Index",
|
|
|
|
source = key.source,
|
|
|
|
key
|
|
|
|
}
|
|
|
|
end
|
|
|
|
nomsu:add(tree_to_nomsu(key))
|
2018-11-12 14:08:42 -08:00
|
|
|
if value then
|
2018-12-30 19:04:34 -08:00
|
|
|
local value_nomsu = recurse(value)
|
|
|
|
nomsu:add(" = ", value_nomsu)
|
2018-11-08 15:23:22 -08:00
|
|
|
end
|
|
|
|
return nomsu
|
|
|
|
elseif "Comment" == _exp_0 then
|
2019-02-05 15:45:27 -08:00
|
|
|
nomsu:add("###", (tree[1]:gsub("\n", "\n ")))
|
2018-11-08 15:23:22 -08:00
|
|
|
return nomsu
|
2018-12-18 19:30:01 -08:00
|
|
|
elseif "IndexChain" == _exp_0 or "Index" == _exp_0 or "Number" == _exp_0 or "Var" == _exp_0 or "Comment" == _exp_0 or "Error" == _exp_0 then
|
2018-11-08 15:23:22 -08:00
|
|
|
return tree_to_inline_nomsu(tree)
|
|
|
|
else
|
|
|
|
return error("Unknown type: " .. tostring(tree.type))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return {
|
|
|
|
tree_to_nomsu = tree_to_nomsu,
|
|
|
|
tree_to_inline_nomsu = tree_to_inline_nomsu
|
|
|
|
}
|