diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-10-03 08:23:36 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-10-03 08:53:40 -0700 |
commit | 972fd2cff9ff7e3981acc4c3807a529e1b40d0bf (patch) | |
tree | 8d2d0d21205d74600cc25f3c9a4134b96b66cffb /parser.y | |
parent | 090f4dee78f7a7239ebd515993412f9505001fa9 (diff) | |
download | txr-972fd2cff9ff7e3981acc4c3807a529e1b40d0bf.tar.gz txr-972fd2cff9ff7e3981acc4c3807a529e1b40d0bf.tar.bz2 txr-972fd2cff9ff7e3981acc4c3807a529e1b40d0bf.zip |
Eliminating the extra list wrapping applied to regular
expression objects in the syntax tree. The parser
just puts out a #<regex ...> instead of (#<regex ...> regex-syntax).
* eval.c (do_eval): We no longer need the hack of
treating (#<regex> ...) as a special form which
evaluates to #<regex>.
(expand): We no longer have to skip over regex syntax,
so the case is removed.
* match.c (h_var, do_txeval, do_match_line): regexp cases are no longer
subcases of consp but stand on their own. In do_match_line, we
introduce a COBJ case into the type switch for regexes.
* parser.y: regexes are now compiled in the regex and lisp_regex
grammar rules instead of the dependent rules, and are not wrapped in
extra syntax.
Diffstat (limited to 'parser.y')
-rw-r--r-- | parser.y | 18 |
1 files changed, 8 insertions, 10 deletions
@@ -360,13 +360,12 @@ text : TEXT { $$ = rl(string_own($1), num(parser->lineno)); | SPACE { if ($1[0] == ' ' && $1[1] == 0) { val spaces = list(oneplus_s, chr(' '), nao); - $$ = cons(regex_compile(spaces, nil), spaces); + $$ = regex_compile(spaces, nil); rl($$, num(parser->lineno)); free($1); } else { $$ = rl(string_own($1), num(parser->lineno)); }} - | regex { $$ = cons(regex_compile(rest($1), nil), - rest($1)); + | regex { $$ = $1; rl($$, num(parser->lineno)); } | EMPTY { $$ = null_string; } ; @@ -661,8 +660,7 @@ var_op : '*' { $$ = list(t, nao); } ; modifiers : NUMBER { $$ = cons($1, nil); } - | regex { $$ = cons(cons(regex_compile(rest($1), nil), - rest($1)), nil); + | regex { $$ = cons($1, nil); rlcp($$, $1); } | list { $$ = rlcp(cons(expand_meta($1, nil), nil), $1); } @@ -755,9 +753,7 @@ n_expr : SYMTOK { $$ = symhlpr($1, t); } | list { $$ = $1; } | vector { $$ = $1; } | hash { $$ = $1; } - | lisp_regex { $$ = cons(regex_compile(rest($1), nil), - rest($1)); - rlcp($$, $1); } + | lisp_regex { $$ = $1; } | chrlit { $$ = $1; } | strlit { $$ = $1; } | quasilit { $$ = $1; } @@ -773,7 +769,8 @@ n_exprs_opt : n_exprs { $$ = $1; } | /* empty */ { $$ = nil; } ; -regex : '/' regexpr '/' { $$ = cons(regex_s, $2); end_of_regex(scnr); +regex : '/' regexpr '/' { $$ = regex_compile($2, nil); + end_of_regex(scnr); rl($$, num(parser->lineno)); } | '/' error { $$ = nil; yybadtok(yychar, lit("regex")); @@ -781,7 +778,8 @@ regex : '/' regexpr '/' { $$ = cons(regex_s, $2); end_of_regex(scnr); ; lisp_regex : HASH_SLASH regexpr '/' - { $$ = cons(regex_s, $2); end_of_regex(scnr); + { $$ = regex_compile($2, nil); + end_of_regex(scnr); rl($$, num(parser->lineno)); } | HASH_SLASH error { $$ = nil; |