diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-05-06 06:33:38 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-05-06 06:33:38 -0700 |
commit | 4c6c110dfc3f10777fb7c9334c054d3407358af0 (patch) | |
tree | f0db3571f64f13be3553c391287907490709ff69 /parser.y | |
parent | 94a855ee63bc2fc63a16e882eee1453877bf0bbc (diff) | |
download | txr-4c6c110dfc3f10777fb7c9334c054d3407358af0.tar.gz txr-4c6c110dfc3f10777fb7c9334c054d3407358af0.tar.bz2 txr-4c6c110dfc3f10777fb7c9334c054d3407358af0.zip |
parser: #; tests and bugfixes.
This is motivated by the recent crash regression in the #;
comment out mechanism. The parser doesn't have adequate
coverage in the test suite.
* tests/012/syntax.tl: New file, for testing syntax.
A problem was found #;.expr did not work inside a list,
only at top level. It required a space before the dot.
* parser.y (listacc): A couple of productions to handle
hash-semicolon immediately followed by a dot without
any whitespace, and then by an expression.
* y.tab.c.shipped: Regenerated.
Diffstat (limited to 'parser.y')
-rw-r--r-- | parser.y | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -1005,9 +1005,16 @@ listacc : n_expr { $$ = cons($1, nil); n_expr { parser->ignore = 0; $$ = cons(nil, nil); $$->c.cdr = $$; } + | HASH_SEMI '.' { parser->ignore = 1; } + n_expr { parser->ignore = 0; + $$ = cons(nil, nil); + $$->c.cdr = $$; } | listacc HASH_SEMI { parser->ignore = 1; } n_expr { parser->ignore = 0; $$ = $1; } + | listacc HASH_SEMI '.' { parser->ignore = 1; } + n_expr { parser->ignore = 0; + $$ = $1; } | listacc n_expr { uses_or2; $$ = rlc(cons($2, $1->c.cdr), or2($2, $1->c.cdr)); $1->c.cdr = $$; } |