Skip to content

Commit

Permalink
remove TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
tserg committed Jan 7, 2024
1 parent 2722b10 commit 5bbbb96
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion vyper/ast/grammar.lark
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,6 @@ body: _NEWLINE _INDENT ([COMMENT] _NEWLINE | _stmt)+ _DEDENT
cond_exec: _expr ":" body
default_exec: body
if_stmt: "if" cond_exec ("elif" cond_exec)* ["else" ":" default_exec]
// TODO: make this into a variable definition e.g. `for i: uint256 in range(0, 5): ...`
loop_variable: NAME ":" type
loop_iterator: _expr
for_stmt: "for" loop_variable "in" loop_iterator ":" body
Expand Down

0 comments on commit 5bbbb96

Please sign in to comment.