The generator incorrectly parses double values as int when the fractional part of double consists solely zeros.
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
doublevalues asintwhen the fractional part ofdoubleconsists solely zeros.For example, 1.0 or 1.00 both resolve to
intwheres 1.1 or 1.01 would resolve todouble. The latter case should always hold for either scenario.