SOLL icon indicating copy to clipboard operation
SOLL copied to clipboard

implement new Yul Grammar for 0.8.6

Open jacky860226 opened this issue 4 years ago • 0 comments

Difference of 0.7.0 and 0.8.6:

0.7.0

Literal =
    (NumberLiteral | StringLiteral | HexLiteral | TrueLiteral | FalseLiteral) ( ':' TypeName )?
HexLiteral = 'hex' ('"' ([0-9a-fA-F]{2})* '"' | '\'' ([0-9a-fA-F]{2})* '\'')

0.8.6

Literal =
    (NumberLiteral | StringLiteral | TrueLiteral | FalseLiteral) ( ':' TypeName )?

jacky860226 avatar Jul 15 '21 14:07 jacky860226