mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
defer statement
This commit is contained in:
@ -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
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user