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; }
public void setValueType(Parser.TYPE valueType) { this.valueType = valueType; }
public void setIndexType(Parser.TYPE indexType) { this.indexType = indexType; }