[Issue 1418] tupleof bug on nested classes
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Wed Jul 28 13:15:08 PDT 2010
http://d.puremagic.com/issues/show_bug.cgi?id=1418
Don <clugdbug at yahoo.com.au> changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |patch
--- Comment #1 from Don <clugdbug at yahoo.com.au> 2010-07-28 13:15:06 PDT ---
tupleof shouldn't be including hidden 'this' members.
PATCH: mtype.c, line 7138, TypeClass::dotExp()
if (ident == Id::tupleof)
{
/* Create a TupleExp
*/
e = e->semantic(sc); // do this before turning on noaccesscheck
Expressions *exps = new Expressions;
exps->reserve(sym->fields.dim);
for (size_t i = 0; i < sym->fields.dim; i++)
{ VarDeclaration *v = (VarDeclaration *)sym->fields.data[i];
+ // Don't include hidden 'this' pointer
+ if (v->isThisDeclaration())
+ continue;
Expression *fe = new DotVarExp(e->loc, e, v);
exps->push(fe);
}
e = new TupleExp(e->loc, exps);
sc = sc->push();
sc->noaccesscheck = 1;
e = e->semantic(sc);
sc->pop();
return e;
}
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
More information about the Digitalmars-d-bugs
mailing list