Skip to content

Commit 699b1ec

Browse files
authored
fix[test]: add missing keywords to reserved list (#4763)
fixes fuzz failure in `test_call_graph_stability.py` which relies on `RESERVED_KEYWORDS` to filter invalid programs.
1 parent db8abe8 commit 699b1ec

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

vyper/ast/identifiers.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ def validate_identifier(attr, ast_node=None):
6464
"internal",
6565
"payable",
6666
"nonreentrant",
67+
"staticcall",
68+
"extcall",
6769
# "class" keywords
6870
"interface",
6971
"struct",

0 commit comments

Comments
 (0)