mirror of
https://github.com/golang/go
synced 2024-11-20 07:54:39 -07:00
gc: remove duplicate errors, give better error for I.(T)
R=ken2 CC=golang-dev https://golang.org/cl/370041
This commit is contained in:
parent
e00795859b
commit
529369e452
@ -79,7 +79,7 @@ errcmp(const void *va, const void *vb)
|
||||
return a->lineno - b->lineno;
|
||||
if(a->seq != b->seq)
|
||||
return a->seq - b->seq;
|
||||
return 0;
|
||||
return strcmp(a->msg, b->msg);
|
||||
}
|
||||
|
||||
void
|
||||
@ -91,6 +91,7 @@ flusherrors(void)
|
||||
return;
|
||||
qsort(err, nerr, sizeof err[0], errcmp);
|
||||
for(i=0; i<nerr; i++)
|
||||
if(i==0 || strcmp(err[i].msg, err[i-1].msg) != 0)
|
||||
print("%s", err[i].msg);
|
||||
nerr = 0;
|
||||
}
|
||||
@ -3082,12 +3083,20 @@ runifacechecks(void)
|
||||
needexplicit = 1;
|
||||
}
|
||||
if(wrong) {
|
||||
if(p->explicit) {
|
||||
if(samename)
|
||||
yyerror("%T cannot contain %T\n\tmissing %S%hhT\n\tdo have %S%hhT",
|
||||
iface, t, m->sym, m->type, samename->sym, samename->type);
|
||||
else
|
||||
yyerror("%T cannot contain %T\n\tmissing %S%hhT", iface, t, m->sym, m->type);
|
||||
} else {
|
||||
if(samename)
|
||||
yyerror("%T is not %T\n\tmissing %S%hhT\n\tdo have %S%hhT",
|
||||
t, iface, m->sym, m->type, samename->sym, samename->type);
|
||||
else
|
||||
yyerror("%T is not %T\n\tmissing %S%hhT", t, iface, m->sym, m->type);
|
||||
}
|
||||
}
|
||||
else if(!p->explicit && needexplicit) {
|
||||
if(m) {
|
||||
if(samename)
|
||||
|
Loading…
Reference in New Issue
Block a user