// file Sum.java public class Sum extends ExpTree { public Sum (ExpTree[] c) { super(c); } public Object evaluate() { int sum = 0; for (int i=0; i