This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / IR / Tree / TagDeclarationNode.java
diff --git a/Robust/src/IR/Tree/TagDeclarationNode.java b/Robust/src/IR/Tree/TagDeclarationNode.java
deleted file mode 100644 (file)
index beff2e8..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-package IR.Tree;
-import IR.TagVarDescriptor;
-import IR.TagDescriptor;
-
-public class TagDeclarationNode extends BlockStatementNode {
-  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 String getName() {
-    return name;
-  }
-
-  public String getTagType() {
-    return tagtype;
-  }
-
-  public int kind() {
-    return Kind.TagDeclarationNode;
-  }
-}