Change tabbing for everything....
[IRC.git] / Robust / src / IR / Tree / TagDeclarationNode.java
index e186de6becbe9e21bd2bed90fac8c17fad253f93..beff2e830fde795af142b016da45eb0661b68ab2 100644 (file)
@@ -3,33 +3,33 @@ import IR.TagVarDescriptor;
 import IR.TagDescriptor;
 
 public class TagDeclarationNode extends BlockStatementNode {
-    String name;
-    String tagtype;
-    TagVarDescriptor tvd;
+  String name;
+  String tagtype;
+  TagVarDescriptor tvd;
 
-    public TagDeclarationNode(String name, String tagtype) {
-       this.name=name;
-       this.tagtype=tagtype;
-       tvd=new TagVarDescriptor(new TagDescriptor(tagtype), name);
-    }
-    
-    public String printNode(int indent) {
-       return "Tag "+name+"=new("+tagtype+")";
-    }
-    
-    public TagVarDescriptor getTagVarDescriptor() {
-       return tvd;
-    }
+  public TagDeclarationNode(String name, String tagtype) {
+    this.name=name;
+    this.tagtype=tagtype;
+    tvd=new TagVarDescriptor(new TagDescriptor(tagtype), name);
+  }
 
-    public String getName() {
-       return name;
-    }
+  public String printNode(int indent) {
+    return "Tag "+name+"=new("+tagtype+")";
+  }
 
-    public String getTagType() {
-       return tagtype;
-    }
+  public TagVarDescriptor getTagVarDescriptor() {
+    return tvd;
+  }
 
-    public int kind() {
-       return Kind.TagDeclarationNode;
-    }
+  public String getName() {
+    return name;
+  }
+
+  public String getTagType() {
+    return tagtype;
+  }
+
+  public int kind() {
+    return Kind.TagDeclarationNode;
+  }
 }