diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2019-10-30 23:36:43 -0400 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2019-10-30 23:36:43 -0400 |
commit | fc6c746a726b3a56f2489c3db884c8ac2cd491d7 (patch) | |
tree | 7a65165db3ef9ab90c1cb80c01de33763d11822c | |
parent | 184e247a680c7889863f1b6676883d3cfa87eaba (diff) |
minor improvements to error reporting
-rw-r--r-- | location.c | 1 | ||||
-rw-r--r-- | test.toc | 3 | ||||
-rw-r--r-- | types.c | 8 |
3 files changed, 10 insertions, 2 deletions
@@ -1,3 +1,4 @@ static bool location_after(Location a, Location b) { /* a is after b? */ + assert(a.ctx == b.ctx); return a.code > b.code; } @@ -7,10 +7,11 @@ Point @= struct { x, y : int; something:fn(f32); z,asdfasdfasdf:(int,int); - safdasdjfhsj@int=3; + }; main @= fn() { p:Point; +a:p; // asasdfdsfa:(int,int); }; @@ -363,7 +363,13 @@ static bool type_resolve(Typer *tr, Type *t, Location where) { /* just check if it's actually defined */ if (!ident_typeval(t->user.name)) { char *s = ident_to_str(t->user.name); - err_print(where, "Use of undeclared type %s.", s); + IdentDecl *idecl = ident_decl(t->user.name); + if (idecl) { + err_print(where, "Use of non-type identifier %s as type.", s); + info_print(idecl->decl->where, "%s is declared here.", s); + } else { + err_print(where, "Use of undeclared type %s.", s); + } free(s); return false; } |