Skip to content

Commit

Permalink
remove as keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
StunxFS authored Dec 17, 2024
1 parent 0d771a5 commit 77698ea
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions compiler/token/mod.v
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ pub enum Kind {
ellipsis // ...

keyword_beg
kw_as
kw_break
kw_const
kw_continue
Expand Down Expand Up @@ -185,7 +184,6 @@ fn build_token_str() []string {
s[Kind.dollar] = '$'
s[Kind.at] = '@'

s[Kind.kw_as] = 'as'
s[Kind.kw_break] = 'break'
s[Kind.kw_const] = 'const'
s[Kind.kw_continue] = 'continue'
Expand Down

0 comments on commit 77698ea

Please sign in to comment.