package symtable;
public class SymbolTableEntry{
public enum Type { INT, BOOL }
private final Type type;
private String scope;
private int offset;
public SymbolTableEntry(Type type, String scope, int offset) {
this.type = type;
this.scope = scope;
this.offset = offset;
}
public Type type() { return type; }
public int offset() { return offset; }
}