/************************************************************ This class specifies the result of evaluating an expression. This consists of an integer giving the result of evaluating the expression, and an updated symbol table resulting from this evaluation. ************************************************************/ class IntAndTable { int i; Table t; IntAndTable(int ii, Table tt) {i=ii; t=tt;} }