-
-
Notifications
You must be signed in to change notification settings - Fork 6.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Parser issues #509
Comments
The scanner recognizes the malformed string and returns a |
With the overworked scanner in branch manual_lexer, the error message for the above code is
|
The example in #551 shows that the diagnosis information got better. However, the output could be improved: |
The new scanner (merged yesterday) now provides the diagnosis information described in #509 (comment). |
After backspace? |
Ooops. Fixed this. |
on a following json
{"body": "text\v"}
it gives
parse error at 10: parse error - unexpected '"'
dropbox/json11 gives:
unescaped (11) in string
which is correct (this is an unescaped vertical tab, disallowed by JSON std)
The text was updated successfully, but these errors were encountered: