mirror of
https://github.com/vlang/v.git
synced 2025-09-15 07:22:27 +03:00
defer statement
This commit is contained in:
parent
d58174e77f
commit
17c6ba04a2
3 changed files with 24 additions and 6 deletions
|
@ -75,6 +75,7 @@ enum Token {
|
|||
key_const
|
||||
key_continue
|
||||
key_default
|
||||
key_defer
|
||||
key_else
|
||||
key_embed
|
||||
key_enum
|
||||
|
@ -213,6 +214,7 @@ fn build_token_str() []string {
|
|||
s[Token.key_union] = 'union'
|
||||
s[Token.key_static] = 'static'
|
||||
s[Token.key_as] = 'as'
|
||||
s[Token.key_defer] = 'defer'
|
||||
return s
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue