comparison dmd2/scope.c @ 1526:54b3c1394d62

Merged dmdfe 2.031.
author Robert Clipsham <robert@octarineparrot.com>
date Tue, 07 Jul 2009 02:26:11 +0100
parents 638d16625da2
children
comparison
equal deleted inserted replaced
1525:d28cd7c45267 1526:54b3c1394d62
69 this->inunion = 0; 69 this->inunion = 0;
70 this->incontract = 0; 70 this->incontract = 0;
71 this->nofree = 0; 71 this->nofree = 0;
72 this->noctor = 0; 72 this->noctor = 0;
73 this->noaccesscheck = 0; 73 this->noaccesscheck = 0;
74 this->mustsemantic = 0;
74 this->intypeof = 0; 75 this->intypeof = 0;
75 this->parameterSpecialization = 0; 76 this->parameterSpecialization = 0;
76 this->callSuper = 0; 77 this->callSuper = 0;
77 this->flags = 0; 78 this->flags = 0;
78 this->anonAgg = NULL; 79 this->anonAgg = NULL;
117 this->inunion = enclosing->inunion; 118 this->inunion = enclosing->inunion;
118 this->incontract = enclosing->incontract; 119 this->incontract = enclosing->incontract;
119 this->nofree = 0; 120 this->nofree = 0;
120 this->noctor = enclosing->noctor; 121 this->noctor = enclosing->noctor;
121 this->noaccesscheck = enclosing->noaccesscheck; 122 this->noaccesscheck = enclosing->noaccesscheck;
123 this->mustsemantic = enclosing->mustsemantic;
122 this->intypeof = enclosing->intypeof; 124 this->intypeof = enclosing->intypeof;
123 this->parameterSpecialization = enclosing->parameterSpecialization; 125 this->parameterSpecialization = enclosing->parameterSpecialization;
124 this->callSuper = enclosing->callSuper; 126 this->callSuper = enclosing->callSuper;
125 this->flags = 0; 127 this->flags = 0;
126 this->anonAgg = NULL; 128 this->anonAgg = NULL;