Updated compiler to produce cool string output.
This commit is contained in:
parent
3e2844ef62
commit
626b6cab79
@ -147,7 +147,7 @@ indented_text (Text):
|
|||||||
|
|
||||||
|
|
||||||
cool_quote:
|
cool_quote:
|
||||||
'"' !(%nl+ !(=curr_indent))
|
'"' &([^%nl] / %nl+ =curr_indent)
|
||||||
cool_indented_text (Text):
|
cool_indented_text (Text):
|
||||||
'"'
|
'"'
|
||||||
_inline_text*
|
_inline_text*
|
||||||
@ -155,6 +155,7 @@ cool_indented_text (Text):
|
|||||||
/ disallowed_interpolation? {%nl+} {:curr_indent: indent :})
|
/ disallowed_interpolation? {%nl+} {:curr_indent: indent :})
|
||||||
(indented_cool_plain_text / text_interpolation / {~ %nl+ (=curr_indent -> "") ~})*
|
(indented_cool_plain_text / text_interpolation / {~ %nl+ (=curr_indent -> "") ~})*
|
||||||
('"' eol / missing_quote_err)
|
('"' eol / missing_quote_err)
|
||||||
|
{:curr_indent: %nil :}
|
||||||
indented_cool_plain_text (Text):
|
indented_cool_plain_text (Text):
|
||||||
{~ ((("\" blank_lines =curr_indent "..") -> "") / (!text_interpolation ((!("\n") escaped_char) / ('\\' -> '\') / '\')) / (cool_quote / [^%nl"\])+)+
|
{~ ((("\" blank_lines =curr_indent "..") -> "") / (!text_interpolation ((!("\n") escaped_char) / ('\\' -> '\') / '\')) / (cool_quote / [^%nl"\])+)+
|
||||||
(%nl+ (=curr_indent -> ""))* ~}
|
(%nl+ (=curr_indent -> ""))* ~}
|
||||||
|
@ -184,13 +184,7 @@ do
|
|||||||
local find_errors
|
local find_errors
|
||||||
find_errors = function(t)
|
find_errors = function(t)
|
||||||
if t.type == "Error" then
|
if t.type == "Error" then
|
||||||
return coroutine.yield(pretty_error({
|
return coroutine.yield(t)
|
||||||
error = t.error,
|
|
||||||
hint = t.hint,
|
|
||||||
source = t:get_source_code(),
|
|
||||||
start = t.source.start,
|
|
||||||
stop = t.source.stop
|
|
||||||
}))
|
|
||||||
else
|
else
|
||||||
for k, v in pairs(t) do
|
for k, v in pairs(t) do
|
||||||
local _continue_0 = false
|
local _continue_0 = false
|
||||||
@ -234,7 +228,24 @@ do
|
|||||||
table.insert(errs, "\027[31;1m +" .. tostring(num_errs - #errs) .. " additional errors...\027[0m\n")
|
table.insert(errs, "\027[31;1m +" .. tostring(num_errs - #errs) .. " additional errors...\027[0m\n")
|
||||||
end
|
end
|
||||||
if #errs > 0 then
|
if #errs > 0 then
|
||||||
error(table.concat(errs, '\n\n'), 0)
|
local err_strings
|
||||||
|
do
|
||||||
|
local _accum_0 = { }
|
||||||
|
local _len_0 = 1
|
||||||
|
for _index_0 = 1, #errs do
|
||||||
|
local t = errs[_index_0]
|
||||||
|
_accum_0[_len_0] = pretty_error({
|
||||||
|
error = t.error,
|
||||||
|
hint = t.hint,
|
||||||
|
source = t:get_source_code(),
|
||||||
|
start = t.source.start,
|
||||||
|
stop = t.source.stop
|
||||||
|
})
|
||||||
|
_len_0 = _len_0 + 1
|
||||||
|
end
|
||||||
|
err_strings = _accum_0
|
||||||
|
end
|
||||||
|
error(table.concat(err_strings, '\n\n'), 0)
|
||||||
end
|
end
|
||||||
return tree
|
return tree
|
||||||
end
|
end
|
||||||
@ -1305,7 +1316,7 @@ do
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
nomsu:append(interp_nomsu)
|
nomsu:append(interp_nomsu)
|
||||||
if interp_nomsu:is_multiline() and i < #tree then
|
if interp_nomsu:is_multiline() then
|
||||||
nomsu:append("\n..")
|
nomsu:append("\n..")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -1313,10 +1324,7 @@ 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 nomsu:match("\n$") then
|
return NomsuCode(tree.source, '"\\\n ..', nomsu, '"')
|
||||||
nomsu:append('\\("")')
|
|
||||||
end
|
|
||||||
return NomsuCode(tree.source, '".."\n ', nomsu)
|
|
||||||
elseif "List" == _exp_0 or "Dict" == _exp_0 then
|
elseif "List" == _exp_0 or "Dict" == _exp_0 then
|
||||||
assert(#tree > 0)
|
assert(#tree > 0)
|
||||||
local nomsu = NomsuCode(tree.source, pop_comments(tree[1].source.start))
|
local nomsu = NomsuCode(tree.source, pop_comments(tree[1].source.start))
|
||||||
|
@ -105,10 +105,7 @@ with NomsuCompiler
|
|||||||
pretty_error = require("pretty_errors")
|
pretty_error = require("pretty_errors")
|
||||||
find_errors = (t)->
|
find_errors = (t)->
|
||||||
if t.type == "Error"
|
if t.type == "Error"
|
||||||
coroutine.yield pretty_error{
|
coroutine.yield t
|
||||||
error:t.error, hint:t.hint, source:t\get_source_code!
|
|
||||||
start:t.source.start, stop:t.source.stop
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
for k,v in pairs(t)
|
for k,v in pairs(t)
|
||||||
continue unless AST.is_syntax_tree(v)
|
continue unless AST.is_syntax_tree(v)
|
||||||
@ -120,7 +117,11 @@ with NomsuCompiler
|
|||||||
errs = [errs[i] for i=1,3]
|
errs = [errs[i] for i=1,3]
|
||||||
table.insert(errs, "\027[31;1m +#{num_errs-#errs} additional errors...\027[0m\n")
|
table.insert(errs, "\027[31;1m +#{num_errs-#errs} additional errors...\027[0m\n")
|
||||||
if #errs > 0
|
if #errs > 0
|
||||||
error(table.concat(errs, '\n\n'), 0)
|
err_strings = [pretty_error{
|
||||||
|
error:t.error, hint:t.hint, source:t\get_source_code!
|
||||||
|
start:t.source.start, stop:t.source.stop
|
||||||
|
} for t in *errs]
|
||||||
|
error(table.concat(err_strings, '\n\n'), 0)
|
||||||
return tree
|
return tree
|
||||||
.can_optimize = -> false
|
.can_optimize = -> false
|
||||||
|
|
||||||
@ -833,13 +834,11 @@ with NomsuCompiler
|
|||||||
elseif bit.type != "List" and bit.type != "Dict"
|
elseif bit.type != "List" and bit.type != "Dict"
|
||||||
interp_nomsu\parenthesize!
|
interp_nomsu\parenthesize!
|
||||||
nomsu\append interp_nomsu
|
nomsu\append interp_nomsu
|
||||||
if interp_nomsu\is_multiline! and i < #tree
|
if interp_nomsu\is_multiline!
|
||||||
nomsu\append "\n.."
|
nomsu\append "\n.."
|
||||||
nomsu = NomsuCode(tree.source)
|
nomsu = NomsuCode(tree.source)
|
||||||
add_text(nomsu, tree)
|
add_text(nomsu, tree)
|
||||||
if nomsu\is_multiline! and nomsu\match("\n$")
|
return NomsuCode(tree.source, '"\\\n ..', nomsu, '"')
|
||||||
nomsu\append '\\("")' -- Need to specify where the text ends
|
|
||||||
return NomsuCode(tree.source, '".."\n ', nomsu)
|
|
||||||
|
|
||||||
when "List", "Dict"
|
when "List", "Dict"
|
||||||
assert #tree > 0
|
assert #tree > 0
|
||||||
|
@ -67,9 +67,6 @@ local string2 = {
|
|||||||
end,
|
end,
|
||||||
line_at = function(self, pos)
|
line_at = function(self, pos)
|
||||||
assert(type(pos) == 'number', "Invalid string position")
|
assert(type(pos) == 'number', "Invalid string position")
|
||||||
if pos < 1 or pos > #self then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
for i, line, start, stop in isplit(self, '\n') do
|
for i, line, start, stop in isplit(self, '\n') do
|
||||||
if stop + 1 >= pos then
|
if stop + 1 >= pos then
|
||||||
return line, i, (pos - start + 1)
|
return line, i, (pos - start + 1)
|
||||||
|
@ -24,7 +24,6 @@ string2 = {
|
|||||||
|
|
||||||
line_at: (pos)=>
|
line_at: (pos)=>
|
||||||
assert(type(pos) == 'number', "Invalid string position")
|
assert(type(pos) == 'number', "Invalid string position")
|
||||||
return if pos < 1 or pos > #@
|
|
||||||
for i, line, start, stop in isplit(@, '\n')
|
for i, line, start, stop in isplit(@, '\n')
|
||||||
if stop+1 >= pos
|
if stop+1 >= pos
|
||||||
return line, i, (pos-start+1)
|
return line, i, (pos-start+1)
|
||||||
|
Loading…
Reference in New Issue
Block a user