summaryrefslogtreecommitdiffstats
path: root/parser.l
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-02-24 08:03:59 -0800
committerKaz Kylheku <kaz@kylheku.com>2014-02-24 19:17:30 -0800
commit501453a261771e2874bd065a78772e987616b14c (patch)
tree569029b676c1df641959e14528a0d28303593f5e /parser.l
parentfd795adb279719bf77a7a6333b1e97500c454964 (diff)
downloadtxr-501453a261771e2874bd065a78772e987616b14c.tar.gz
txr-501453a261771e2874bd065a78772e987616b14c.tar.bz2
txr-501453a261771e2874bd065a78772e987616b14c.zip
* parser.l: Support octal and binary numbers.
* txr.1: Documented. * genvim.txr, txr.vim: Updated.
Diffstat (limited to 'parser.l')
-rw-r--r--parser.l44
1 files changed, 44 insertions, 0 deletions
diff --git a/parser.l b/parser.l
index d553b56b..0f30365a 100644
--- a/parser.l
+++ b/parser.l
@@ -156,6 +156,8 @@ NUM {SGN}?{DIG}+
FLO {SGN}?({DIG}*[.]{DIG}+{EXP}?|{DIG}+[.]?{EXP})
FLODOT {SGN}?{DIG}+[.]
XNUM #x{SGN}?{XDIG}+
+ONUM #o{SGN}?[0-7]+
+BNUM #b{SGN}?[0-1]+
BSCHR [a-zA-Z0-9!$%&*+\-<=>?\\^_~]
NSCHR [a-zA-Z0-9!$%&*+\-<=>?\\^_~/]
ID_END [^a-zA-Z0-9!$%&*+\-<=>?\\^_~/]
@@ -213,6 +215,28 @@ UONLY {U2}{U}|{U3}{U}{U}|{U4}{U}{U}{U}
return NUMBER;
}
+<SPECIAL,NESTED,BRACED>{ONUM} {
+ val str = string_own(utf8_dup_from(yytext + 2));
+
+ if (yy_top_state() == INITIAL
+ || yy_top_state() == QSILIT)
+ yy_pop_state();
+
+ yylval.val = int_str(str, num(8));
+ return NUMBER;
+}
+
+<SPECIAL,NESTED,BRACED>{BNUM} {
+ val str = string_own(utf8_dup_from(yytext + 2));
+
+ if (yy_top_state() == INITIAL
+ || yy_top_state() == QSILIT)
+ yy_pop_state();
+
+ yylval.val = int_str(str, num(2));
+ return NUMBER;
+}
+
<SPECIAL>({FLO}|{FLODOT}){TOK} |
<BRACED>({FLO}|{FLODOT}){BTOK} |
<NESTED>({FLO}|{FLODOT}){NTOK} {
@@ -270,6 +294,26 @@ UONLY {U2}{U}|{U3}{U}{U}|{U4}{U}{U}{U}
return METANUM;
}
+<NESTED,QSILIT>@{ONUM} {
+ val str = string_own(utf8_dup_from(yytext + 3));
+
+ if (yy_top_state() == INITIAL
+ || yy_top_state() == QSILIT)
+ yy_pop_state();
+ yylval.val = int_str(str, num(8));
+ return METANUM;
+}
+
+<NESTED,QSILIT>@{BNUM} {
+ val str = string_own(utf8_dup_from(yytext + 3));
+
+ if (yy_top_state() == INITIAL
+ || yy_top_state() == QSILIT)
+ yy_pop_state();
+ yylval.val = int_str(str, num(2));
+ return METANUM;
+}
+
<SPECIAL>{TOK} |
<BRACED>{BTOK} |
<NESTED>{NTOK} {