This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / IR / VarDescriptor.java
diff --git a/Robust/src/IR/VarDescriptor.java b/Robust/src/IR/VarDescriptor.java
deleted file mode 100644 (file)
index f66c712..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-package IR;
-import IR.Tree.Modifiers;
-import IR.Tree.ExpressionNode;
-
-/**
- * Descriptor
- *
- * represents a symbol in the language (var name, function name, etc).
- */
-
-public class VarDescriptor extends Descriptor {
-
-  protected TypeDescriptor td;
-  protected String identifier;
-
-  public VarDescriptor(TypeDescriptor t, String identifier) {
-    super(identifier);
-    this.td=t;
-    this.identifier=identifier;
-    this.safename = "___" + name + "___";
-    this.uniqueid=count++;
-  }
-
-  public String getName() {
-    return identifier;
-  }
-
-  public TypeDescriptor getType() {
-    return td;
-  }
-
-  public String toString() {
-    return td.toString()+" "+identifier;
-  }
-}