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
As shown (roughly) here, +1 is parsed and considered as valid syntax, even though Elm rejects it with a syntax error.
It seems to be parsed as OperationApplication "+" Right (Application []) (Int 1). The Application is obviously invalid, and I am not sure how this will turn out in v8, where it has become a non-empty list. Also, its range is the emptyRange (0,0,0,0).
++1 also seems to compile even though it shouldn't.
The text was updated successfully, but these errors were encountered:
As shown (roughly) here,
+1
is parsed and considered as valid syntax, even though Elm rejects it with a syntax error.It seems to be parsed as
OperationApplication "+" Right (Application []) (Int 1)
. The Application is obviously invalid, and I am not sure how this will turn out in v8, where it has become a non-empty list. Also, its range is the emptyRange (0,0,0,0).++1
also seems to compile even though it shouldn't.The text was updated successfully, but these errors were encountered: