diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2013-12-15 00:17:39 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2013-12-15 00:17:39 -0800 |
commit | 030ce483baef93392d54a4aec90bfa7b5906bc53 (patch) | |
tree | 434c2981465d9c8fd3d84b5d9d8207a2beeddd67 /parser.l | |
parent | e5cd9bbd3de84e90d5602b83a0eb7780ec4b750e (diff) | |
download | txr-030ce483baef93392d54a4aec90bfa7b5906bc53.tar.gz txr-030ce483baef93392d54a4aec90bfa7b5906bc53.tar.bz2 txr-030ce483baef93392d54a4aec90bfa7b5906bc53.zip |
Changing the tokenizer to get rid of IDENT, KEYWORD and METAVAR
token categories, replaced by a single one called SYMTOK.
Package prefixes are now recognized and processed in tokens.
* lib.c (delete_package): Fix problem in no-such-package
error case: it would always report nil as the name.
(intern): Fix nonsensical error message: in the no-such-package case it
would report that the symbol exists already.
* parser.l (grammar): Occurences of KEYWORD, METAVAR, and IDENT
scrubbed. All rules reporting any of these now return
SYMTOK. The main one of these is greatly simplified.
* parser.y (sym_helper): New function.
(char_from_name): const qualifier inside param's type declaration.
(grammar): IDENT, KEYWORD and METAVAR tokens are gone.
New token SYMTOK. Grammar refactored around SYMTOK and using
the new sym_helper function.
(char_from_name): Updated.
Diffstat (limited to 'parser.l')
-rw-r--r-- | parser.l | 19 |
1 files changed, 5 insertions, 14 deletions
@@ -260,17 +260,8 @@ UONLY {U2}{U}|{U3}{U}{U}|{U4}{U}{U}{U} || yy_top_state() == QSILIT) yy_pop_state(); - switch (yytext[0]) { - case ':': - yylval.lexeme = utf8_dup_from(yytext + 1); - return KEYWORD; - case '@': - yylval.lexeme = utf8_dup_from(yytext + 1); - return METAVAR; - default: - yylval.lexeme = utf8_dup_from(yytext); - return IDENT; - } + yylval.lexeme = utf8_dup_from(yytext); + return SYMTOK; } <BRACED,NESTED>: { @@ -278,7 +269,7 @@ UONLY {U2}{U}|{U3}{U}{U}|{U4}{U}{U}{U} || yy_top_state() == QSILIT) yy_pop_state(); yylval.lexeme = utf8_dup_from(""); - return KEYWORD; + return SYMTOK; } <SPECIAL>\({WS}all{WS}\) { @@ -732,12 +723,12 @@ UONLY {U2}{U}|{U3}{U}{U}|{U4}{U}{U}{U} <CHRLIT>{SYM} { yylval.lexeme = utf8_dup_from(yytext); - return IDENT; + return SYMTOK; } <CHRLIT>[^ \t\n] { yylval.lexeme = utf8_dup_from(yytext); - return IDENT; /* hack */ + return SYMTOK; /* hack */ } <STRLIT>\n { |