/******************************************************************* This class specifies the result of evaluating a list of expressions. This consists of a list of integers giving the result of evaluating the list of expressions, and an updated symbol table resulting from these evaluations. *******************************************************************/ class IntListAndTable { IntList il; Table t; IntListAndTable(IntList ii, Table tt) {il=ii; t=tt;} }