Question: Starting with the BinaryExpression learning activity solution from this week, write a new class DebugVisitor that visits an expression tree and returns a list of

Starting with the BinaryExpression learning activity solution from this week, write a new class DebugVisitor that visits an expression tree and returns a list of the calls made to the visitor. For example, if the expression tree represented the expression 3 + 5, then the output would be preVisit AddExpression visit ConstantExpression 3 visit AddExpression visit ConstantExpression 5 postVisit AddExpression  Hint: You can use obj.getClass().getSimpleName() to get the name of an object. import java.util.*; public class DebugVisitor implements Visitor { public DebugVisitor() { } public List getResult() {   return null; } @Override   public void preVisit(BinaryExpression expr) {   }   @Override   public void visit(BinaryExpression expr) {   }   @Override   public void postVisit(BinaryExpression expr) {   }   @Override   public void visit(ConstantExpression expr) {   } } 

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!