Removed EOL comments
This commit is contained in:
parent
d30f6a397d
commit
d3905474c9
@ -220,7 +220,8 @@ test:
|
|||||||
(not $) compiles to "(not \($ as lua expr))"
|
(not $) compiles to "(not \($ as lua expr))"
|
||||||
test:
|
test:
|
||||||
assume ((size of [1, 2, 3]) == 3)
|
assume ((size of [1, 2, 3]) == 3)
|
||||||
(size of $list) compiles to "(#\($list as lua expr))"
|
assume ((# [1, 2, 3]) == 3)
|
||||||
|
[# $list, size of $list] all compile to "(#\($list as lua expr))"
|
||||||
($list is empty) compiles to "(#\($list as lua expr) == 0)"
|
($list is empty) compiles to "(#\($list as lua expr) == 0)"
|
||||||
|
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
@ -8,16 +8,14 @@ test:
|
|||||||
$colors = {..}
|
$colors = {..}
|
||||||
normal: 0, "reset color": 0, bright: 1, bold: 1, dim: 2, italic: 3, underscore: 4
|
normal: 0, "reset color": 0, bright: 1, bold: 1, dim: 2, italic: 3, underscore: 4
|
||||||
"slow blink": 5, "fast blink": 6, reverse: 7, inverse: 7, inverted: 7
|
"slow blink": 5, "fast blink": 6, reverse: 7, inverse: 7, inverted: 7
|
||||||
hidden: 8, # There's some other codes, but they're not currently implemented
|
hidden: 8
|
||||||
|
# There's some other codes, but they're not currently implemented
|
||||||
black: 30, red: 31, green: 32, yellow: 33, blue: 34, magenta: 35, cyan: 36
|
black: 30, red: 31, green: 32, yellow: 33, blue: 34, magenta: 35, cyan: 36
|
||||||
white: 37, "on black": 40, "on red": 41, "on green": 42, "on yellow": 43
|
white: 37, "on black": 40, "on red": 41, "on green": 42, "on yellow": 43
|
||||||
"on blue": 44, "on magenta": 45, "on cyan": 46, "on white": 47
|
"on blue": 44, "on magenta": 45, "on cyan": 46, "on white": 47
|
||||||
|
|
||||||
for $name = $colornum in $colors:
|
for $name = $colornum in $colors:
|
||||||
$colornum = "\$colornum"
|
$colornum = "\$colornum"
|
||||||
|
|
||||||
#(=lua "COMPILE_ACTIONS").%name = (..)
|
|
||||||
[%nomsu, %tree] -> (Lua "'\\027[\(%colornum)m'")
|
|
||||||
$compile.action.$name = (..)
|
$compile.action.$name = (..)
|
||||||
for ($compile $text):
|
for ($compile $text):
|
||||||
if $text:
|
if $text:
|
||||||
|
@ -31,15 +31,13 @@ empty_block (Block):
|
|||||||
nodent: (unexpected_indent [^%nl]* / =curr_indent)
|
nodent: (unexpected_indent [^%nl]* / =curr_indent)
|
||||||
indent: {~ =curr_indent (ws / (%tab -> ' '))+ ~}
|
indent: {~ =curr_indent (ws / (%tab -> ' '))+ ~}
|
||||||
blank_lines: %nl ((nodent comment / ws*) %nl)*
|
blank_lines: %nl ((nodent comment / ws*) %nl)*
|
||||||
eol: ws* eol_comment? (!. / &%nl)
|
eol: ws* (!. / &%nl)
|
||||||
|
|
||||||
nl_nodent: blank_lines nodent
|
nl_nodent: blank_lines nodent
|
||||||
nl_indent: blank_lines tab_error? {:curr_indent: indent :} (comment nl_nodent)*
|
nl_indent: blank_lines tab_error? {:curr_indent: indent :} (comment nl_nodent)*
|
||||||
|
|
||||||
comment (Comment):
|
comment (Comment):
|
||||||
"#" {~ [^%nl]* (%nl+ (indent -> '') [^%nl]*)* (%nl &%nl)* ~}
|
"#" {~ [^%nl]* (%nl+ (indent -> '') [^%nl]*)* (%nl &%nl)* ~}
|
||||||
eol_comment (Comment):
|
|
||||||
"#" {[^%nl]*}
|
|
||||||
|
|
||||||
unexpected_code: ws* _unexpected_code
|
unexpected_code: ws* _unexpected_code
|
||||||
_unexpected_code (Error):
|
_unexpected_code (Error):
|
||||||
@ -236,7 +234,7 @@ inline_dict_entry:
|
|||||||
dict_key:
|
dict_key:
|
||||||
text_word / inline_expression
|
text_word / inline_expression
|
||||||
|
|
||||||
operator_char: ['`~@^&*+=|<>?/%!-]
|
operator_char: [#'`~@^&*+=|<>?/%!-]
|
||||||
ident_char: [a-zA-Z0-9_] / %utf8_char
|
ident_char: [a-zA-Z0-9_] / %utf8_char
|
||||||
ws: " "
|
ws: " "
|
||||||
|
|
||||||
|
@ -227,6 +227,9 @@ tree_to_nomsu = function(tree)
|
|||||||
for subtree in coroutine.wrap(function()
|
for subtree in coroutine.wrap(function()
|
||||||
return (t:map(coroutine.yield) and nil)
|
return (t:map(coroutine.yield) and nil)
|
||||||
end) do
|
end) do
|
||||||
|
if subtree.type == "Comment" then
|
||||||
|
try_inline = false
|
||||||
|
end
|
||||||
if subtree.type == "Block" then
|
if subtree.type == "Block" then
|
||||||
if #subtree > 1 then
|
if #subtree > 1 then
|
||||||
try_inline = false
|
try_inline = false
|
||||||
@ -456,6 +459,7 @@ tree_to_nomsu = function(tree)
|
|||||||
item_nomsu = recurse(item)
|
item_nomsu = recurse(item)
|
||||||
end
|
end
|
||||||
if item.type == 'Comment' then
|
if item.type == 'Comment' then
|
||||||
|
sep = '\n'
|
||||||
item_nomsu = tree_to_nomsu(item)
|
item_nomsu = tree_to_nomsu(item)
|
||||||
end
|
end
|
||||||
nomsu:add(sep)
|
nomsu:add(sep)
|
||||||
|
@ -173,6 +173,8 @@ tree_to_nomsu = (tree)->
|
|||||||
space = MAX_LINE - nomsu\trailing_line_len!
|
space = MAX_LINE - nomsu\trailing_line_len!
|
||||||
try_inline = true
|
try_inline = true
|
||||||
for subtree in coroutine.wrap(-> (t\map(coroutine.yield) and nil))
|
for subtree in coroutine.wrap(-> (t\map(coroutine.yield) and nil))
|
||||||
|
if subtree.type == "Comment"
|
||||||
|
try_inline = false
|
||||||
if subtree.type == "Block"
|
if subtree.type == "Block"
|
||||||
if #subtree > 1
|
if #subtree > 1
|
||||||
try_inline = false
|
try_inline = false
|
||||||
@ -356,6 +358,7 @@ tree_to_nomsu = (tree)->
|
|||||||
if #item_nomsu\text! > MAX_LINE
|
if #item_nomsu\text! > MAX_LINE
|
||||||
item_nomsu = recurse(item)
|
item_nomsu = recurse(item)
|
||||||
if item.type == 'Comment'
|
if item.type == 'Comment'
|
||||||
|
sep = '\n'
|
||||||
item_nomsu = tree_to_nomsu(item)
|
item_nomsu = tree_to_nomsu(item)
|
||||||
nomsu\add sep
|
nomsu\add sep
|
||||||
nomsu\add item_nomsu
|
nomsu\add item_nomsu
|
||||||
|
@ -24,7 +24,7 @@ for $ in 2 to (size of (command line args).extra_args):
|
|||||||
$tree = (nil)
|
$tree = (nil)
|
||||||
|
|
||||||
unless $tree:
|
unless $tree:
|
||||||
do next $filename
|
do next $
|
||||||
|
|
||||||
$results = []
|
$results = []
|
||||||
for $t in recursive $tree:
|
for $t in recursive $tree:
|
||||||
|
Loading…
Reference in New Issue
Block a user