comparison dmd/statement.c @ 1367:8026319762be

Merged DMD 1.045 !!!
author Tomas Lindquist Olsen <tomas.l.olsen gmail com>
date Sat, 16 May 2009 22:21:31 +0200
parents 78038e540342
children 17268b0a3ab0
comparison
equal deleted inserted replaced
1366:81121ac19f61 1367:8026319762be
1126 increment = resolveProperties(sc, increment); 1126 increment = resolveProperties(sc, increment);
1127 } 1127 }
1128 1128
1129 sc->sbreak = this; 1129 sc->sbreak = this;
1130 sc->scontinue = this; 1130 sc->scontinue = this;
1131 body = body->semantic(sc); 1131 if (body)
1132 body = body->semantic(sc);
1132 sc->noctor--; 1133 sc->noctor--;
1133 1134
1134 sc->pop(); 1135 sc->pop();
1135 return this; 1136 return this;
1136 } 1137 }