1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

defer statement

This commit is contained in:
Alexander Medvednikov
2019-07-15 22:09:34 +02:00
parent d58174e77f
commit 17c6ba04a2
3 changed files with 24 additions and 6 deletions

View File

@ -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
}