comparison dmd/WithStatement.d @ 49:0aa7d1437ada

AttribDeclaration.oneMember Lexer.decodeUTF WithStatement.ctor StructDeclaration.syntaxCopy CtorDeclaration.syntaxCopy ConditionalStatement.syntaxCopy ProtDeclaration.syntaxCopy ArrayScopeSymbol.this TemplateDeclaration.toChars
author korDen
date Sat, 21 Aug 2010 07:53:20 +0400
parents 10317f0c89a5
children 2e2a5c3f943a
comparison
equal deleted inserted replaced
48:0bd8afbaffd7 49:0aa7d1437ada
17 Statement body_; 17 Statement body_;
18 VarDeclaration wthis; 18 VarDeclaration wthis;
19 19
20 this(Loc loc, Expression exp, Statement body_) 20 this(Loc loc, Expression exp, Statement body_)
21 { 21 {
22 assert(false);
23 super(loc); 22 super(loc);
23 this.exp = exp;
24 this.body_ = body_;
25 wthis = null;
24 } 26 }
25 27
26 Statement syntaxCopy() 28 Statement syntaxCopy()
27 { 29 {
28 assert(false); 30 assert(false);