Added documentation.
This commit is contained in:
parent
8deb59b6a7
commit
878fff6db5
@ -102,6 +102,7 @@ indented_text (Text):
|
|||||||
'".."' eol %nl {%nl*} {:curr_indent: indent :}
|
'".."' eol %nl {%nl*} {:curr_indent: indent :}
|
||||||
(indented_plain_text / text_interpolation / {~ %nl+ (=curr_indent -> "") ~})*
|
(indented_plain_text / text_interpolation / {~ %nl+ (=curr_indent -> "") ~})*
|
||||||
(!! [^%nl]+ -> "Unexpected character while parsing Text" !!)?
|
(!! [^%nl]+ -> "Unexpected character while parsing Text" !!)?
|
||||||
|
-- Tracking text-lines-within-indented-text as separate objects allows for better debugging line info
|
||||||
indented_plain_text (Text):
|
indented_plain_text (Text):
|
||||||
{~ (("\\" -> "\") / (("\" blank_lines =curr_indent "..") -> "") / (!text_interpolation "\") / [^%nl\]+)+
|
{~ (("\\" -> "\") / (("\" blank_lines =curr_indent "..") -> "") / (!text_interpolation "\") / [^%nl\]+)+
|
||||||
(%nl+ (=curr_indent -> ""))* ~}
|
(%nl+ (=curr_indent -> ""))* ~}
|
||||||
|
@ -776,7 +776,7 @@ do
|
|||||||
nomsu:append(arg_nomsu)
|
nomsu:append(arg_nomsu)
|
||||||
end
|
end
|
||||||
if check then
|
if check then
|
||||||
check(len + #tostring(nomsu), tree)
|
check(len, nomsu, tree)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
return nomsu
|
return nomsu
|
||||||
@ -787,19 +787,19 @@ do
|
|||||||
end
|
end
|
||||||
local nomsu = NomsuCode(tree.source, "\\", inner_nomsu)
|
local nomsu = NomsuCode(tree.source, "\\", inner_nomsu)
|
||||||
if check then
|
if check then
|
||||||
check(len + #tostring(nomsu), tree)
|
check(len, nomsu, tree)
|
||||||
end
|
end
|
||||||
return nomsu
|
return nomsu
|
||||||
elseif "Block" == _exp_0 then
|
elseif "Block" == _exp_0 then
|
||||||
if check then
|
|
||||||
check(len, tree)
|
|
||||||
end
|
|
||||||
local nomsu = NomsuCode(tree.source, ":")
|
local nomsu = NomsuCode(tree.source, ":")
|
||||||
|
if check then
|
||||||
|
check(len, nomsu, tree)
|
||||||
|
end
|
||||||
for i, line in ipairs(tree) do
|
for i, line in ipairs(tree) do
|
||||||
nomsu:append(i == 1 and " " or "; ")
|
nomsu:append(i == 1 and " " or "; ")
|
||||||
nomsu:append(recurse(line, nomsu, i == 1 or i < #tree))
|
nomsu:append(recurse(line, nomsu, i == 1 or i < #tree))
|
||||||
if check then
|
if check then
|
||||||
check(len + #tostring(nomsu), tree)
|
check(len, nomsu, tree)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
if #tree > 1 or parenthesize_blocks then
|
if #tree > 1 or parenthesize_blocks then
|
||||||
@ -826,7 +826,7 @@ do
|
|||||||
nomsu:append("\\", interp_nomsu)
|
nomsu:append("\\", interp_nomsu)
|
||||||
end
|
end
|
||||||
if check then
|
if check then
|
||||||
check(len + #tostring(nomsu), tree)
|
check(len, nomsu, tree)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
return nomsu
|
return nomsu
|
||||||
@ -840,7 +840,7 @@ do
|
|||||||
end
|
end
|
||||||
nomsu:append(recurse(item, nomsu))
|
nomsu:append(recurse(item, nomsu))
|
||||||
if check then
|
if check then
|
||||||
check(len + #tostring(nomsu), tree)
|
check(len, nomsu, tree)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
nomsu:append("]")
|
nomsu:append("]")
|
||||||
@ -853,7 +853,7 @@ do
|
|||||||
end
|
end
|
||||||
nomsu:append(recurse(entry, nomsu))
|
nomsu:append(recurse(entry, nomsu))
|
||||||
if check then
|
if check then
|
||||||
check(len + #tostring(nomsu), tree)
|
check(len, nomsu, tree)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
nomsu:append("}")
|
nomsu:append("}")
|
||||||
@ -879,7 +879,7 @@ do
|
|||||||
nomsu:append(value_nomsu)
|
nomsu:append(value_nomsu)
|
||||||
end
|
end
|
||||||
if check then
|
if check then
|
||||||
check(len + #tostring(nomsu), tree)
|
check(len, nomsu, tree)
|
||||||
end
|
end
|
||||||
return nomsu
|
return nomsu
|
||||||
elseif "IndexChain" == _exp_0 then
|
elseif "IndexChain" == _exp_0 then
|
||||||
@ -900,7 +900,7 @@ do
|
|||||||
end
|
end
|
||||||
nomsu:append(bit_nomsu)
|
nomsu:append(bit_nomsu)
|
||||||
if check then
|
if check then
|
||||||
check(len + #tostring(nomsu), tree)
|
check(len, nomsu, tree)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
return nomsu
|
return nomsu
|
||||||
@ -990,12 +990,32 @@ do
|
|||||||
end
|
end
|
||||||
local space = MAX_LINE - pos
|
local space = MAX_LINE - pos
|
||||||
local inline
|
local inline
|
||||||
for len, tree in coroutine.wrap(function()
|
for prefix, nomsu, tree in coroutine.wrap(function()
|
||||||
inline = self:tree_to_inline_nomsu(t, false, coroutine.yield)
|
inline = self:tree_to_inline_nomsu(t, false, coroutine.yield)
|
||||||
end) do
|
end) do
|
||||||
if len > MAX_LINE or (tree.type == "Block" and #tree > 1) then
|
local len = #tostring(nomsu)
|
||||||
|
if prefix + len > MAX_LINE then
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
|
if tree.type == "Block" and (#tree > 1 or len > 20) then
|
||||||
|
break
|
||||||
|
end
|
||||||
|
if tree.type == "Text" then
|
||||||
|
if (function()
|
||||||
|
local found_nl = false
|
||||||
|
for i, b in ipairs(tree) do
|
||||||
|
if i == 1 and type(b) == 'string' then
|
||||||
|
b = b:match('^[\n]*(.*)')
|
||||||
|
end
|
||||||
|
found_nl = found_nl or (type(b) == 'string' and b:match('\n'))
|
||||||
|
if found_nl and (type(b) ~= 'string' or b:match('[^\n]')) then
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end)() then
|
||||||
|
break
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
if inline and #tostring(inline) <= space then
|
if inline and #tostring(inline) <= space then
|
||||||
return inline
|
return inline
|
||||||
@ -1008,6 +1028,7 @@ do
|
|||||||
end
|
end
|
||||||
local _exp_0 = tree.type
|
local _exp_0 = tree.type
|
||||||
if "FileChunks" == _exp_0 then
|
if "FileChunks" == _exp_0 then
|
||||||
|
local setup = nil
|
||||||
local nomsu = NomsuCode(tree.source, pop_comments(tree.source.start))
|
local nomsu = NomsuCode(tree.source, pop_comments(tree.source.start))
|
||||||
for chunk_no, chunk in ipairs(tree) do
|
for chunk_no, chunk in ipairs(tree) do
|
||||||
if chunk_no > 1 then
|
if chunk_no > 1 then
|
||||||
@ -1016,6 +1037,12 @@ do
|
|||||||
nomsu:append(pop_comments(chunk.source.start))
|
nomsu:append(pop_comments(chunk.source.start))
|
||||||
if chunk.type == "Block" then
|
if chunk.type == "Block" then
|
||||||
for line_no, line in ipairs(chunk) do
|
for line_no, line in ipairs(chunk) do
|
||||||
|
if setup == nil then
|
||||||
|
setup = line.type == "Action" and line.stub == "use %"
|
||||||
|
elseif setup and not (line.type == "Action" and line.stub == "use %") then
|
||||||
|
nomsu:append("\n", pop_comments(line.source.start))
|
||||||
|
setup = false
|
||||||
|
end
|
||||||
nomsu:append(pop_comments(line.source.start, '\n'))
|
nomsu:append(pop_comments(line.source.start, '\n'))
|
||||||
local line_nomsu = self:tree_to_nomsu(line, pop_comments)
|
local line_nomsu = self:tree_to_nomsu(line, pop_comments)
|
||||||
nomsu:append(line_nomsu)
|
nomsu:append(line_nomsu)
|
||||||
@ -1027,6 +1054,7 @@ do
|
|||||||
else
|
else
|
||||||
nomsu:append(recurse(chunk))
|
nomsu:append(recurse(chunk))
|
||||||
end
|
end
|
||||||
|
setup = false
|
||||||
end
|
end
|
||||||
nomsu:append(pop_comments(tree.source.stop, '\n'))
|
nomsu:append(pop_comments(tree.source.stop, '\n'))
|
||||||
return nomsu
|
return nomsu
|
||||||
@ -1128,6 +1156,9 @@ do
|
|||||||
end
|
end
|
||||||
local nomsu = NomsuCode(tree.source)
|
local nomsu = NomsuCode(tree.source)
|
||||||
add_text(nomsu, tree)
|
add_text(nomsu, tree)
|
||||||
|
if nomsu:is_multiline() and tostring(nomsu):match("\n$") then
|
||||||
|
nomsu:append('\\("")')
|
||||||
|
end
|
||||||
return NomsuCode(tree.source, '".."\n ', nomsu)
|
return NomsuCode(tree.source, '".."\n ', nomsu)
|
||||||
elseif "List" == _exp_0 then
|
elseif "List" == _exp_0 then
|
||||||
assert(#tree > 0)
|
assert(#tree > 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user