|
@@ -3965,7 +3965,7 @@ AstNode *parse_switch_stmt(AstFile *f) {
|
|
body = ast_block_stmt(f, list, open, close);
|
|
body = ast_block_stmt(f, list, open, close);
|
|
|
|
|
|
if (!is_type_match) {
|
|
if (!is_type_match) {
|
|
- tag = convert_stmt_to_expr(f, tag, str_lit("match expression"));
|
|
|
|
|
|
+ tag = convert_stmt_to_expr(f, tag, str_lit("switch expression"));
|
|
return ast_switch_stmt(f, token, init, tag, body);
|
|
return ast_switch_stmt(f, token, init, tag, body);
|
|
} else {
|
|
} else {
|
|
return ast_type_switch_stmt(f, token, tag, body);
|
|
return ast_type_switch_stmt(f, token, tag, body);
|