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
Under numEncoding None it is not even possible to pass numbers to functions that do not evaluate their arguments. It is possible to pass JS values other than Number, but passing a Number will make fromInt throw.
fromInt should just pass the value unmodified.
Numeric literals in code should be handled in the parser; in numEncoding None they should be valid identifier names, and handled as such. cf. #20
The text was updated successfully, but these errors were encountered:
Under numEncoding
None
it is not even possible to pass numbers to functions that do not evaluate their arguments. It is possible to pass JS values other thanNumber
, but passing aNumber
will makefromInt
throw.fromInt
should just pass the value unmodified.Numeric literals in code should be handled in the parser; in numEncoding
None
they should be valid identifier names, and handled as such. cf. #20The text was updated successfully, but these errors were encountered: