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
Engines heavily optimize integers, and they do currently parse 1 and 1.0differently, taking 1.0 as a hint it's likely used as a floating point number and 1 as a hint it's likely used as a simple integer. Shouldn't the AST reflect this reality by giving them this helpful little tip?
The text was updated successfully, but these errors were encountered:
Engines heavily optimize integers, and they do currently parse
1
and1.0
differently, taking1.0
as a hint it's likely used as a floating point number and1
as a hint it's likely used as a simple integer. Shouldn't the AST reflect this reality by giving them this helpful little tip?The text was updated successfully, but these errors were encountered: