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
Referring to these cases in JsonGeneratorTest
JsonGeneratorTest
enum DoubleTestCase { ZERO(0.0, "0.0"), E(Math.E, "2.718281828459045"), PI(Math.PI, "3.141592653589793"), MAX_VALUE(Double.MAX_VALUE, "1.7976931348623157E308"), MIN_VALUE(Double.MIN_VALUE, "4.9E-324");
isn't the MAX_VALUE one also legal if there's a + between the E and 308?
MAX_VALUE
+
E
308
It looks like the JSON grammar allows no character, a plus, or a minus.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Referring to these cases in
JsonGeneratorTest
isn't the
MAX_VALUE
one also legal if there's a+
between theE
and308
?It looks like the JSON grammar allows no character, a plus, or a minus.
The text was updated successfully, but these errors were encountered: