comparison dmd/ExpStatement.d @ 155:a43c65469219

+ Statement.interpret() + ContinueStatement.interpret() + DoStatement.interpret()
author trass3r
date Wed, 15 Sep 2010 17:31:22 +0200
parents e28b18c23469
children e3afd1303184
comparison
equal deleted inserted replaced
154:14feb7ae01a6 155:a43c65469219
71 { 71 {
72 version (LOG) 72 version (LOG)
73 { 73 {
74 printf("ExpStatement.interpret(%s)\n", exp ? exp.toChars() : ""); 74 printf("ExpStatement.interpret(%s)\n", exp ? exp.toChars() : "");
75 } 75 }
76 mixin(START!()); 76 mixin(START);
77 if (exp) 77 if (exp)
78 { 78 {
79 Expression e = exp.interpret(istate); 79 Expression e = exp.interpret(istate);
80 if (e is EXP_CANT_INTERPRET) 80 if (e is EXP_CANT_INTERPRET)
81 { 81 {