You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can you write a small test application that exposes this and show the command line you used to build? That helps adding it to the unit test suite to catch any regressions.
Thanks for reporting, I reproduced this and fixed it on incoming.
In the future, it's best to include a small complete testcase with bug reports, just so there isn't a risk of the testcase that I create missing something important.
If I have a number like this in my C++ file.
1.12345678901234567890123e21
It gets truncated to this in the compiled Javascript and causes a syntax error because of the ".0" after "e+21".
1.1234567890123457e+21.0
It seems to be only to certain exponential digits. For instance the same number with "e24" doesn't cause an issue.
The text was updated successfully, but these errors were encountered: