summaryrefslogtreecommitdiffstats
path: root/parser.l
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-05-28 07:03:11 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-05-28 07:03:11 -0700
commitec03421d25dd3296cfcfc39133f051a8ebe094a3 (patch)
treed0d09a9e19ea6ad4561e40451906f562d9ff999c /parser.l
parent8bc5fc7a77eb1a6707f3c742235ab38ca210f55e (diff)
downloadtxr-ec03421d25dd3296cfcfc39133f051a8ebe094a3.tar.gz
txr-ec03421d25dd3296cfcfc39133f051a8ebe094a3.tar.bz2
txr-ec03421d25dd3296cfcfc39133f051a8ebe094a3.zip
json: support forgotten null object.
The JSON null will map to the Lisp null symbol. I thought about using : but that could cause surprises; like when it's passed to functions as an optional argument, it will trigger the default value. * parser.l (JSON): Add rules for producing null keyword. * txr.1: Documented. * lex.yy.c.shipped: Updated.
Diffstat (limited to 'parser.l')
-rw-r--r--parser.l10
1 files changed, 10 insertions, 0 deletions
diff --git a/parser.l b/parser.l
index 86472c03..c0532dc6 100644
--- a/parser.l
+++ b/parser.l
@@ -1194,6 +1194,11 @@ NJPUNC [^(){},:\[\]"~*^ \t\n]
return JSKW;
}
+<JSON>null/({JPUNC}|[ \t\n]) {
+ yylval->val = null_s;
+ return JSKW;
+}
+
<JSON>{NJPUNC}+ {
if (strcmp("true", yytext) == 0) {
yylval->val = t;
@@ -1205,6 +1210,11 @@ NJPUNC [^(){},:\[\]"~*^ \t\n]
return JSKW;
}
+ if (strcmp("null", yytext) == 0) {
+ yylval->val = null_s;
+ return JSKW;
+ }
+
{
val str = string_own(utf8_dup_from(yytext));
yyerrorf(yyg, lit("unrecognized JSON syntax: ~a"), str, nao);