-
-
Notifications
You must be signed in to change notification settings - Fork 795
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
Optional leading plus sign not included in textual value of any integral nor all floating-point numbers #784
Comments
Come to think of this, I may want to remove leading plus sign from all cases, instead of trying to add it. |
Ok, so: for now non-standard plus ( |
Implementation of #774 is mostly complete, but there is one minor inconsistency: whereas leading plus sign -- if (and only if) enabled as non-standard feature -- is retained for some floating-point numbers when accessing token with
JsonParser.getText()
(and related), it is not retained for any of integral numbers (nor all FPs).The underlying problem to solve is that of assumptions based on there only ever being a leading minus sign in
TextBuffer
(or shared input buffer): something that made sense before allowing non-standard leading plus.The text was updated successfully, but these errors were encountered: