Remove unused tokens

This commit is contained in:
gingerBill
2020-12-06 13:17:48 +00:00
parent 1ac84b09a1
commit 98c8fde098
5 changed files with 105 additions and 129 deletions
+1 -1
View File
@@ -2599,7 +2599,7 @@ parse_operand :: proc(p: ^Parser, lhs: bool) -> ^ast.Expr {
case .Asm:
tok := expect_token(p, .Asm);
param_types: [dynamic]^ast.Expr
param_types: [dynamic]^ast.Expr;
return_type: ^ast.Expr;
if allow_token(p, .Open_Paren) {
for p.curr_tok.kind != .Close_Paren && p.curr_tok.kind != .EOF {