We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
"{"
"["
The C extension JSON parser behaves as expected:
require 'json' JSON::VERSION # => "2.0.3" JSON.parse('[') # !> 409: unexpected token at '' (JSON::ParserError) JSON.parse('{') # !> 743: unexpected token at '{' (JSON::ParserError)
The pure implementation does not:
require 'json/pure' JSON::VERSION # => "2.0.3" JSON.parse('{') # => {} JSON.parse('[') # => []
The text was updated successfully, but these errors were encountered:
Confirmed in master
master
Sorry, something went wrong.
5b4f1ba
Merge pull request #425 from marcandre/fix_pure_parser
09b0bcb
Fix pure parser with unclosed arrays / objects [Fix #314]
No branches or pull requests
The C extension JSON parser behaves as expected:
The pure implementation does not:
The text was updated successfully, but these errors were encountered: