return lineTable;
}
public void initializeSymbolTable() {
if (variableTable == null) {
DynamicVariableTableContext ctx = new DynamicVariableTableContext(this);
variableTable = new DynamicVariableTable(ctx);
} else {
throw new IllegalStateException(
"VariableTable is already set. We should not be calling this");
}