mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-07 08:08:50 +00:00
If missing type is newline, print "newline", not \n
Turns:
W:/Odin/bug/bug.odin(3:27) Syntax Error: Expected a type, got '
'
Storage :: distinct map[]
Into:
W:/Odin/bug/bug.odin(3:27) Syntax Error: Expected a type, got newline
Storage :: distinct map[]
This commit is contained in:
+6
-1
@@ -3560,7 +3560,12 @@ gb_internal Ast *parse_type(AstFile *f) {
|
|||||||
} else {
|
} else {
|
||||||
token = advance_token(f);
|
token = advance_token(f);
|
||||||
}
|
}
|
||||||
syntax_error(token, "Expected a type, got '%.*s'", LIT(prev_token.string));
|
String prev_token_str = prev_token.string;
|
||||||
|
if (prev_token_str == str_lit("\n")) {
|
||||||
|
syntax_error(token, "Expected a type, got newline");
|
||||||
|
} else {
|
||||||
|
syntax_error(token, "Expected a type, got '%.*s'", LIT(prev_token_str));
|
||||||
|
}
|
||||||
return ast_bad_expr(f, token, f->curr_token);
|
return ast_bad_expr(f, token, f->curr_token);
|
||||||
} else if (type->kind == Ast_ParenExpr &&
|
} else if (type->kind == Ast_ParenExpr &&
|
||||||
unparen_expr(type) == nullptr) {
|
unparen_expr(type) == nullptr) {
|
||||||
|
|||||||
Reference in New Issue
Block a user