Change tabbing for everything....
[IRC.git] / Robust / src / IR / Tree / LoopNode.java
index d604b1aae6565093e1a34079ece10499ebd46aba..e85adf90b1d61defa413af4a7c118f09ceb03a48 100644 (file)
@@ -1,64 +1,64 @@
 package IR.Tree;
 
 public class LoopNode extends BlockStatementNode {
-    BlockNode initializer;
-    ExpressionNode condition;
-    BlockNode update;
-    BlockNode body;
-    int type=0;
-    public static int FORLOOP=1;
-    public static int WHILELOOP=2;
-    public static int DOWHILELOOP=3;
+  BlockNode initializer;
+  ExpressionNode condition;
+  BlockNode update;
+  BlockNode body;
+  int type=0;
+  public static int FORLOOP=1;
+  public static int WHILELOOP=2;
+  public static int DOWHILELOOP=3;
 
-    public LoopNode(BlockNode initializer,ExpressionNode condition, BlockNode update, BlockNode body) {
-       this.initializer=initializer;
-       this.condition=condition;
-       this.update=update;
-       this.body=body;
-       initializer.setStyle(BlockNode.EXPRLIST);
-       update.setStyle(BlockNode.EXPRLIST);
-       type=FORLOOP;
-    }
+  public LoopNode(BlockNode initializer,ExpressionNode condition, BlockNode update, BlockNode body) {
+    this.initializer=initializer;
+    this.condition=condition;
+    this.update=update;
+    this.body=body;
+    initializer.setStyle(BlockNode.EXPRLIST);
+    update.setStyle(BlockNode.EXPRLIST);
+    type=FORLOOP;
+  }
 
-    public LoopNode(ExpressionNode condition, BlockNode body, int type) {
-       this.condition=condition;
-       this.body=body;
-       this.type=type;
-    }
-    
-    public BlockNode getInitializer() {
-       return initializer;
-    }
+  public LoopNode(ExpressionNode condition, BlockNode body, int type) {
+    this.condition=condition;
+    this.body=body;
+    this.type=type;
+  }
 
-    public ExpressionNode getCondition() {
-       return condition;
-    }
+  public BlockNode getInitializer() {
+    return initializer;
+  }
 
-    public BlockNode getUpdate() {
-       return update;
-    }
+  public ExpressionNode getCondition() {
+    return condition;
+  }
 
-    public BlockNode getBody() {
-       return body;
-    }
+  public BlockNode getUpdate() {
+    return update;
+  }
 
-    public String printNode(int indent) {
-       if (type==FORLOOP) {
-           return "for("+initializer.printNode(0)+";"+condition.printNode(0)+
-               ";"+update.printNode(0)+") "+body.printNode(indent)+"\n";
-       } else if (type==WHILELOOP) {
-           return "while("+condition.printNode(0)+") "+body.printNode(indent+INDENT)+"\n";
-       } else if (type==DOWHILELOOP) {
-           return "do "+ body.printNode(indent+INDENT)+
-               "while("+condition.printNode(0)+")\n";
-       } else throw new Error();
-    }
+  public BlockNode getBody() {
+    return body;
+  }
 
-    public int getType() {
-       return type;
-    }
+  public String printNode(int indent) {
+    if (type==FORLOOP) {
+      return "for("+initializer.printNode(0)+";"+condition.printNode(0)+
+             ";"+update.printNode(0)+") "+body.printNode(indent)+"\n";
+    } else if (type==WHILELOOP) {
+      return "while("+condition.printNode(0)+") "+body.printNode(indent+INDENT)+"\n";
+    } else if (type==DOWHILELOOP) {
+      return "do "+ body.printNode(indent+INDENT)+
+             "while("+condition.printNode(0)+")\n";
+    } else throw new Error();
+  }
 
-    public int kind() {
-       return Kind.LoopNode;
-    }
+  public int getType() {
+    return type;
+  }
+
+  public int kind() {
+    return Kind.LoopNode;
+  }
 }