Update JSON Parsing to Optionally Allow Numeric Booleans #333
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Updates the JSON Parser to allow for numeric booleans.
For context, although numeric booleans are not widely used there are a few specifications that directly require it such as OpenRTB.
I also toyed with the idea of converting from JInt -> JBool in a high level function in order to limit the surface area of the change.
Looking to get feedback on these changes and if there is another means to do the same functionality without having to update the parsePrimitive method.
Bonus points if this change isn't actually required to do the parsing - there's a chance I missed something while reading through.