diff --git a/compiler/token/mod.v b/compiler/token/mod.v index ef7f88fd..20ef445c 100644 --- a/compiler/token/mod.v +++ b/compiler/token/mod.v @@ -100,7 +100,6 @@ pub enum Kind { kw_pub kw_return kw_struct - kw_test kw_trait kw_while keyword_end @@ -201,7 +200,6 @@ fn build_token_str() []string { s[Kind.kw_pub] = 'pub' s[Kind.kw_return] = 'return' s[Kind.kw_struct] = 'struct' - s[Kind.kw_test] = 'test' s[Kind.kw_trait] = 'trait' s[Kind.kw_while] = 'while'