Open j14y opened 4 years ago
The generator incorrectly parses double values as int when the fractional part of double consists solely zeros.
double
int
For example, 1.0 or 1.00 both resolve to int wheres 1.1 or 1.01 would resolve to double. The latter case should always hold for either scenario.
The generator incorrectly parses
double
values asint
when the fractional part ofdouble
consists solely zeros.For example, 1.0 or 1.00 both resolve to
int
wheres 1.1 or 1.01 would resolve todouble
. The latter case should always hold for either scenario.