comparison dmd/scope.c @ 145:8f704cb9969b trunk

[svn r150] fixes #16 and #17, implements GotoCaseStatement
author ChristianK
date Sat, 08 Mar 2008 15:22:07 +0100
parents c53b6e3fe49a
children 5acec6b2eef8
comparison
equal deleted inserted replaced
144:a27941d00351 145:8f704cb9969b
51 this->sd = NULL; 51 this->sd = NULL;
52 this->enclosing = NULL; 52 this->enclosing = NULL;
53 this->parent = NULL; 53 this->parent = NULL;
54 this->sw = NULL; 54 this->sw = NULL;
55 this->tf = NULL; 55 this->tf = NULL;
56 this->tfOfTry = NULL;
56 this->sbreak = NULL; 57 this->sbreak = NULL;
57 this->scontinue = NULL; 58 this->scontinue = NULL;
58 this->fes = NULL; 59 this->fes = NULL;
59 this->structalign = global.structalign; 60 this->structalign = global.structalign;
60 this->func = NULL; 61 this->func = NULL;
87 this->parent = enclosing->parent; 88 this->parent = enclosing->parent;
88 this->scopesym = NULL; 89 this->scopesym = NULL;
89 this->sd = NULL; 90 this->sd = NULL;
90 this->sw = enclosing->sw; 91 this->sw = enclosing->sw;
91 this->tf = enclosing->tf; 92 this->tf = enclosing->tf;
93 this->tfOfTry = enclosing->tfOfTry;
92 this->sbreak = enclosing->sbreak; 94 this->sbreak = enclosing->sbreak;
93 this->scontinue = enclosing->scontinue; 95 this->scontinue = enclosing->scontinue;
94 this->fes = enclosing->fes; 96 this->fes = enclosing->fes;
95 this->structalign = enclosing->structalign; 97 this->structalign = enclosing->structalign;
96 this->enclosing = enclosing; 98 this->enclosing = enclosing;