summaryrefslogtreecommitdiffstats
path: root/parser.y
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-01-15 20:21:48 -0800
committerKaz Kylheku <kaz@kylheku.com>2016-01-15 20:21:48 -0800
commitef72683bf0d5980f82d85ee0b29392755adcf1ca (patch)
tree5eca7e3e5a4177b505a1f27622b310697e3b7d1f /parser.y
parentde2c2b47f9c0858f785cafc276104377a7357630 (diff)
downloadtxr-ef72683bf0d5980f82d85ee0b29392755adcf1ca.tar.gz
txr-ef72683bf0d5980f82d85ee0b29392755adcf1ca.tar.bz2
txr-ef72683bf0d5980f82d85ee0b29392755adcf1ca.zip
New :mandatory keyword in until/last clauses.
* match.c (mandatory_k): New keyword variable. (h_coll, v_gather, v_collect): Implement :mandatory logic. (syms_init): Initialize mandatory_k. * parser.l (grammar): The UNTIL and LAST tokens must be matched similarly to collect, without consuming the closing parenthesis, allowing a list of items to be parsed between the symbol and the closure, in the NESTED state. * parser.y (gather_clause, collect_clause, elem, repeat_parts_opt, rep_parts_opt): Adjust to new until/last syntax. In the matching productions, the abstract syntax changes to incorporate the options. In the output productions, we throw an error if options are present. * txr.1: Documented :mandatory for collect, coll and gather.
Diffstat (limited to 'parser.y')
-rw-r--r--parser.y39
1 files changed, 28 insertions, 11 deletions
diff --git a/parser.y b/parser.y
index f442ff66..0885861b 100644
--- a/parser.y
+++ b/parser.y
@@ -290,12 +290,13 @@ gather_clause : GATHER exprs_opt ')'
| GATHER exprs_opt ')'
newl gather_parts
- until_last newl
+ until_last exprs_opt ')' newl
clauses
END newl { $$ = list(gather_s,
append2(mapcar(curry_12_1(func_n2(cons), nil),
first($5)), rest($5)),
- $2, cons(cdr($6), $8), nao);
+ $2, cons(cdr($6),
+ cons($7, $10)), nao);
rl($$, num($1)); }
| GATHER exprs_opt ')'
@@ -320,12 +321,13 @@ collect_clause : collect_repeat exprs_opt ')' newl
nao);
rl($$, cdr($1)); }
| collect_repeat exprs_opt ')'
- newl clauses until_last
+ newl clauses until_last exprs_opt ')'
newl clauses END newl { $$ = list(car($1), $5,
- cons(cdr($6), $8),
+ cons(cdr($6),
+ cons($7, $10)),
$2, nao);
rl($$, cdr($1));
- rl($8, car($6)); }
+ rl($10, car($6)); }
| collect_repeat exprs_opt ')'
newl error { $$ = nil;
if (yychar == UNTIL ||
@@ -425,14 +427,19 @@ elem : texts { $$ = rlcp(cons(text_s, $1), $1);
| COLL exprs_opt ')' elems END { $$ = list(coll_s, $4, nil, $2, nao);
rl($$, num($1)); }
| COLL exprs_opt ')' elems
- until_last elems END { $$ = list(coll_s, $4, cons(cdr($5), $6),
+ until_last exprs_opt ')'
+ elems END { $$ = list(coll_s, $4, cons(cdr($5),
+ cons($6, $8)),
$2, nao);
rl($$, num($1));
rl($6, car($5)); }
| REP exprs_opt ')' elems END { $$ = list(rep_s, $4, nil, $2, nao);
rl($$, num($1)); }
| REP exprs_opt ')' elems
- until_last elems END { $$ = list(rep_s, $4, cons(cdr($5), $6),
+ until_last exprs_opt ')'
+ elems END
+ { $$ = list(rep_s, $4, cons(cdr($5),
+ cons($6, $8)),
$2, nao);
rl($$, num($1));
rl($6, car($5)); }
@@ -596,9 +603,14 @@ repeat_parts_opt : SINGLE newl
out_clauses_opt
repeat_parts_opt { $$ = cons(cons(first_s, $3), $4);
rl($$, num($1)); }
- | LAST newl
+ | LAST exprs_opt ')' newl
out_clauses_opt
- repeat_parts_opt { $$ = cons(cons(last_s, $3), $4);
+ repeat_parts_opt { if ($2)
+ yyerrorf(scnr,
+ lit("last: in output, "
+ "takes no arguments"),
+ nao);
+ $$ = cons(cons(last_s, $5), $6);
rl($$, num($1)); }
| EMPTY newl
out_clauses_opt
@@ -660,8 +672,13 @@ rep_parts_opt : SINGLE o_elems_opt
| FIRST o_elems_opt
rep_parts_opt { $$ = cons(cons(first_s, $2), $3);
rl($$, num($1)); }
- | LAST o_elems_opt
- rep_parts_opt { $$ = cons(cons(last_s, $2), $3);
+ | LAST exprs_opt ')'
+ o_elems_opt rep_parts_opt { if ($2)
+ yyerrorf(scnr,
+ lit("last: in output, "
+ "takes no arguments"),
+ nao);
+ $$ = cons(cons(last_s, $4), $5);
rl($$, num($1)); }
| EMPTY o_elems_opt
rep_parts_opt { $$ = cons(cons(empty_s, $2), $3);