1 33 34 package edu.rice.cs.drjava.model.repl; 35 36 import koala.dynamicjava.interpreter.context.*; 37 38 45 public class DebugEvaluationVisitor extends EvaluationVisitorExtension { 46 47 48 protected Context _context; 49 50 51 protected final String _name; 52 53 57 public DebugEvaluationVisitor(Context ctx, String name) { 58 super(ctx); 59 _context = ctx; 60 _name = name; 61 } 62 63 72 84 96 108 120 132 144 156 168 180 192 204 } | Popular Tags |