package edu.neu.ccs.demeter;

/** A class to represent a continuation passed to an around method. */
abstract public class AroundContinuation {
  /** Invoke the continuation-- run the rest of the traversal. */
  abstract public void apply();
}
