This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / IR / Tree / TagEffect.java
diff --git a/Robust/src/IR/Tree/TagEffect.java b/Robust/src/IR/Tree/TagEffect.java
deleted file mode 100644 (file)
index 5a61d27..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-package IR.Tree;
-
-import IR.*;
-
-public class TagEffect {
-  TagVarDescriptor tag;
-  boolean status;
-  String name;
-
-  public TagEffect(String tag, boolean status) {
-    this.name=tag;
-    this.status=status;
-  }
-
-  public void setTag(TagVarDescriptor tag) {
-    this.tag=tag;
-  }
-
-  public TagVarDescriptor getTag() {
-    return tag;
-  }
-
-  public String getName() {
-    return name;
-  }
-
-  public boolean getStatus() {
-    return status;
-  }
-
-  public String printNode(int indent) {
-    if (status)
-      return name;
-    else
-      return "!"+name;
-  }
-}