| ... | ... | @@ -1122,7 +1122,7 @@ fn fnProtoExpr( |
| 1122 | 1122 | |
| 1123 | 1123 | const is_var_args = is_var_args: { |
| 1124 | 1124 | var param_type_i: usize = 0; |
| 1125 | | var it = fn_proto.iterate(tree.*); |
| 1125 | var it = fn_proto.iterate(tree); |
| 1126 | 1126 | while (it.next()) |param| : (param_type_i += 1) { |
| 1127 | 1127 | const is_comptime = if (param.comptime_noalias) |token| |
| 1128 | 1128 | token_tags[token] == .keyword_comptime |
| ... | ... | @@ -3377,7 +3377,7 @@ fn fnDecl( |
| 3377 | 3377 | var params_scope = &fn_gz.base; |
| 3378 | 3378 | const is_var_args = is_var_args: { |
| 3379 | 3379 | var param_type_i: usize = 0; |
| 3380 | | var it = fn_proto.iterate(tree.*); |
| 3380 | var it = fn_proto.iterate(tree); |
| 3381 | 3381 | while (it.next()) |param| : (param_type_i += 1) { |
| 3382 | 3382 | const is_comptime = if (param.comptime_noalias) |token| |
| 3383 | 3383 | token_tags[token] == .keyword_comptime |