diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-05-28 07:03:11 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-05-28 07:03:11 -0700 |
commit | ec03421d25dd3296cfcfc39133f051a8ebe094a3 (patch) | |
tree | d0d09a9e19ea6ad4561e40451906f562d9ff999c /parser.l | |
parent | 8bc5fc7a77eb1a6707f3c742235ab38ca210f55e (diff) | |
download | txr-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.l | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -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); |