Skip to content

Commit 211fb37

Browse files
committed
Added basefee to Yul grammar
1 parent dd0102a commit 211fb37

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/grammar/SolidityLexer.g4

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,8 @@ YulEVMBuiltin:
284284
| 'returndatacopy' | 'extcodehash' | 'create' | 'create2' | 'call' | 'callcode'
285285
| 'delegatecall' | 'staticcall' | 'return' | 'revert' | 'selfdestruct' | 'invalid'
286286
| 'log0' | 'log1' | 'log2' | 'log3' | 'log4' | 'chainid' | 'origin' | 'gasprice'
287-
| 'blockhash' | 'coinbase' | 'timestamp' | 'number' | 'difficulty' | 'gaslimit';
287+
| 'blockhash' | 'coinbase' | 'timestamp' | 'number' | 'difficulty' | 'gaslimit'
288+
| 'basefee';
288289
289290
YulLBrace: '{' -> pushMode(YulMode);
290291
YulRBrace: '}' -> popMode;

0 commit comments

Comments
 (0)