commit ef3f7ecc1927454bf03051f0a76a05ea8911fbe5 (tree)
parent cd3068b4eb78d0820e35779ee1531e27c255ddf7
Author: Andrew Kelley <andrew@ziglang.org>
Date: Thu, 19 Sep 2019 13:07:30 -0400
update std.zig.tokenizer
Diffstat:
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/std/zig/tokenizer.zig b/std/zig/tokenizer.zig
@@ -271,11 +271,11 @@ pub const Token = struct {
.Keyword_align => "align",
.Keyword_allowzero => "allowzero",
.Keyword_and => "and",
+ .Keyword_anyframe => "anyframe",
.Keyword_asm => "asm",
.Keyword_async => "async",
.Keyword_await => "await",
.Keyword_break => "break",
- .Keyword_cancel => "cancel",
.Keyword_catch => "catch",
.Keyword_comptime => "comptime",
.Keyword_const => "const",
@@ -294,11 +294,12 @@ pub const Token = struct {
.Keyword_inline => "inline",
.Keyword_nakedcc => "nakedcc",
.Keyword_noalias => "noalias",
+ .Keyword_noasync => "noasync",
+ .Keyword_noinline => "noinline",
.Keyword_null => "null",
.Keyword_or => "or",
.Keyword_orelse => "orelse",
.Keyword_packed => "packed",
- .Keyword_promise => "promise",
.Keyword_pub => "pub",
.Keyword_resume => "resume",
.Keyword_return => "return",