they're gone.
R=ken
OCL=17569
CL=17569
return;
t->printed = 1;
- if(t->sym != S && t->etype != TFIELD && t->sym->name[0] != '_')
+ if(t->sym != S && t->etype != TFIELD)
dumpsym(t->sym);
dumpprereq(t->type);
dumpprereq(t->down);
if(t->etype != TFIELD
&& t->sym != S
- && t->sym->name[0] != '_'
&& !(fp->flags&FmtLong)) {
s = t->sym;
if(t == types[t->etype] || t == types[TSTRING])
et = t->etype;
strcpy(buf, "");
- if(t->sym != S) {
- if(t->sym->name[0] != '_')
+ if(t->sym != S)
snprint(buf, sizeof(buf), "<%S>", t->sym);
- }
switch(et) {
default:
// direct receiver
s = t->sym;
- if(s != S && s->name[0] != '_') {
+ if(s != S) {
if(t->methptr == 2)
goto both;
t->methptr |= 1;
return T;
s = t->sym;
- if(s != S && s->name[0] != '_') {
+ if(s != S) {
if(t->methptr == 1)
goto both;
t->methptr |= 2;
goto bad;
s = t->sym;
- if(s == S || s->name[0] == '_') {
+ if(s == S) {
if(isptr[t->etype]) {
t = t->type;
if(t == T)
goto bad;
}
s = t->sym;
- if(s == S || s->name[0] == '_')
+ if(s == S)
goto bad;
}