mirror of https://github.com/aamine/cbc
41 lines
864 B
Java
41 lines
864 B
Java
package net.loveruby.cflat.ast;
|
|
import net.loveruby.cflat.asm.*;
|
|
|
|
public class DoWhileNode extends LoopNode {
|
|
protected ExprNode cond;
|
|
protected Node body;
|
|
|
|
public DoWhileNode(Location loc, LabelPool pool,
|
|
Node body, ExprNode cond) {
|
|
super(loc, pool);
|
|
this.body = body;
|
|
this.cond = cond;
|
|
}
|
|
|
|
public Node body() {
|
|
return body;
|
|
}
|
|
|
|
public ExprNode cond() {
|
|
return cond;
|
|
}
|
|
|
|
protected Label continueLabel;
|
|
|
|
public Label continueLabel() {
|
|
if (continueLabel == null) {
|
|
continueLabel = pool.newLabel();
|
|
}
|
|
return continueLabel;
|
|
}
|
|
|
|
protected void _dump(Dumper d) {
|
|
d.printMember("body", body);
|
|
d.printMember("cond", cond);
|
|
}
|
|
|
|
public void accept(ASTVisitor visitor) {
|
|
visitor.visit(this);
|
|
}
|
|
}
|