Beispiel #1
0
        public Symbol next;            // pointer to the next entry in the symbolTable bucket list

        public Symbol(String name, String tokenType, Parser.TYPE dataType, int address)
        {
            this.name      = name;
            this.tokenType = tokenType;
            this.dataType  = dataType;
            this.address   = address;
        }
Beispiel #2
0
 public void setValueType(Parser.TYPE valueType)
 {
     this.valueType = valueType;
 }
Beispiel #3
0
 public void setIndexType(Parser.TYPE indexType)
 {
     this.indexType = indexType;
 }