We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 601fbfa commit 0c43e1bCopy full SHA for 0c43e1b
json.lex
@@ -61,7 +61,8 @@
61
<INITIAL>{int}{frac}{exp} => ( float yytext );
62
63
<INITIAL>"\"" => ( YYBEGIN S; continue() );
64
-<S>"\\\"" => ( addStr "\\"; continue() );
+<S>"\\\\" => ( addStr "\\"; continue() );
65
+<S>"\\\"" => ( addStr "\""; continue() );
66
<S>"\\/" => ( addStr "/"; continue() );
67
<S>"\\b" => ( addStr "\b"; continue() );
68
<S>"\\f" => ( addStr "\f"; continue() );
0 commit comments