This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] /
1 package IR;
2 import IR.Tree.Modifiers;
3 import IR.Tree.ExpressionNode;
4
5 /**
6  * Descriptor
7  *
8  * represents a symbol in the language (var name, function name, etc).
9  */
10
11 public class FieldDescriptor extends Descriptor {
12
13   public static FieldDescriptor arrayLength=new FieldDescriptor(new Modifiers(Modifiers.PUBLIC|Modifiers.FINAL), new TypeDescriptor(TypeDescriptor.INT), "length", null, false);
14
15   protected Modifiers modifier;
16   protected TypeDescriptor td;
17   protected String identifier;
18   protected ExpressionNode en;
19   private boolean isglobal;
20
21   public FieldDescriptor(Modifiers m, TypeDescriptor t, String identifier, ExpressionNode e, boolean isglobal) {
22     super(identifier);
23     this.modifier=m;
24     this.td=t;
25     this.en=e;
26     this.safename = "___" + name + "___";
27     this.uniqueid=count++;
28     this.isglobal=isglobal;
29     if (en!=null) throw new Error("Field initializers not implemented");
30   }
31
32   public boolean isGlobal() {
33     return isglobal;
34   }
35
36   public TypeDescriptor getType() {
37     return td;
38   }
39
40   public String toString() {
41     if (en==null)
42       return modifier.toString()+td.toString()+" "+getSymbol()+";";
43     else
44       return modifier.toString()+td.toString()+" "+getSymbol()+"="+en.printNode(0)+";";
45   }
46
47   public String toStringBrief() {
48     return td.toString()+" "+getSymbol();
49   }
50 }