summaryrefslogtreecommitdiffstats
path: root/parser.l
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2011-10-06 22:20:16 -0700
committerKaz Kylheku <kaz@kylheku.com>2011-10-06 22:20:16 -0700
commit5ab2b46a0f5d6c73b6e81a0efc47c29d29928966 (patch)
tree3d1c0c229308c7c6da8ee84938124275e3beb814 /parser.l
parent9776ad45285a46cacd5fc7288489d374f6480f37 (diff)
downloadtxr-5ab2b46a0f5d6c73b6e81a0efc47c29d29928966.tar.gz
txr-5ab2b46a0f5d6c73b6e81a0efc47c29d29928966.tar.bz2
txr-5ab2b46a0f5d6c73b6e81a0efc47c29d29928966.zip
Extending syntax to allow for @VAR and @(...) forms inside
nested lists. This is in anticipation of future features. * lib.c (expr_s): New symbol variable. (obj_init): expr_s initialized. * lib.h (expr_s): Declared. * match.c (dest_bind): Now takes linenum. Tests for the meta-syntax denoted by the system symbols var_s and expr_s, and throws an error. (eval_form): Similar error checks added. Also, hack: do not add file and line number to an exception which begins with a '(' character; just re-throw it. This suppresses duplicate line number addition when this throw occurs across some nestings. (match_files): Updated calls to dest_bind. * parser.l (yybadtoken): Handle new token kind, METAVAR and METAPAR. (grammar): Refactoring among patterns: TOK broken into SYM and NUM, NTOK introduced, unused NUM_END removed. Rule for @( producing METAPAR in nested state. * parser.y (METAVAR, METAPAR): New tokens. (meta_expr): New nonterminal. (expr): meta_expr and META_VAR productions handled.
Diffstat (limited to 'parser.l')
-rw-r--r--parser.l26
1 files changed, 21 insertions, 5 deletions
diff --git a/parser.l b/parser.l
index 3b80d38c..6441eceb 100644
--- a/parser.l
+++ b/parser.l
@@ -94,6 +94,7 @@ void yybadtoken(int tok, val context)
case TEXT: problem = lit("text"); break;
case IDENT: problem = lit("identifier"); break;
case KEYWORD: problem = lit("keyword"); break;
+ case METAVAR: problem = lit("metavar"); break;
case ALL: problem = lit("\"all\""); break;
case SOME: problem = lit("\"some\""); break;
case NONE: problem = lit("\"none\""); break;
@@ -120,6 +121,7 @@ void yybadtoken(int tok, val context)
case NUMBER: problem = lit("\"number\""); break;
case REGCHAR: problem = lit("regular expression character"); break;
case LITCHAR: problem = lit("string literal character"); break;
+ case METAPAR: problem = lit("@("); break;
}
if (problem != 0)
@@ -175,9 +177,11 @@ static wchar_t num_esc(char *num)
%option nounput
%option noinput
-TOK :?[a-zA-Z_][a-zA-Z0-9_]*|[+-]?[0-9]+
+SYM [a-zA-Z_][a-zA-Z0-9_]*
+NUM [+-]?[0-9]+
+TOK :?{SYM}|{NUM}
+NTOK [:@]?{SYM}|{NUM}
ID_END [^a-zA-Z0-9_]
-NUM_END [^0-9]
WS [\t ]*
HEX [0-9A-Fa-f]
OCT [0-7]
@@ -190,14 +194,15 @@ U3 [\xe0-\xef]
U4 [\xf0-\xf4]
UANY {ASC}|{U2}{U}|{U3}{U}{U}|{U4}{U}{U}{U}
-UANYN {ASCN}|{U2}{U}|{U3}{U}{U}|{U4}{U}{U}{U}
+UANYN {ASCN}|{U2}{U}|{U3}{U}{U}|{U4}{U}{U}{U}
UONLY {U2}{U}|{U3}{U}{U}|{U4}{U}{U}{U}
%x SPECIAL NESTED REGEX STRLIT CHRLIT QSILIT
%%
-<SPECIAL,NESTED>{TOK} {
+<SPECIAL>{TOK} |
+<NESTED>{NTOK} {
cnum val;
char *errp;
@@ -206,9 +211,15 @@ UONLY {U2}{U}|{U3}{U}{U}|{U4}{U}{U}{U}
|| yy_top_state() == QSILIT)
yy_pop_state();
- if (yytext[0] == ':') {
+ switch (yytext[0]) {
+ case ':':
yylval.lexeme = utf8_dup_from(yytext + 1);
return KEYWORD;
+ case '@':
+ yylval.lexeme = utf8_dup_from(yytext + 1);
+ return METAVAR;
+ default:
+ break;
}
errno = 0;
@@ -349,11 +360,16 @@ UONLY {U2}{U}|{U3}{U}{U}|{U4}{U}{U}{U}
return FINALLY;
}
+<NESTED>@\( |
<SPECIAL,NESTED>\{|\( {
yy_push_state(NESTED);
if (yy_top_state() == INITIAL
|| yy_top_state() == QSILIT)
yy_pop_state();
+ if (yytext[0] == '@') {
+ yylval.chr = '(';
+ return METAPAR;
+ }
return yytext[0];
}