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
delete <Ident>; is parsed incorrectly as Stmt::VarDecl { ty: Ty::Custom, .. }. This is because delete is considered a valid identifier when it's a keyword.
...
The text was updated successfully, but these errors were encountered:
Component
syn-solidity
What version of Alloy are you on?
Latest
Operating System
None
Describe the bug
Expr::*Op
may be incorrectdelete <Ident>;
is parsed incorrectly asStmt::VarDecl { ty: Ty::Custom, .. }
. This is becausedelete
is considered a valid identifier when it's a keyword.The text was updated successfully, but these errors were encountered: