public class SL_BreakNode extends ParseNode {
  public int getType() { return G_BREAK; }
  public ParseNode interpret(SymbolTable st) throws BreakException {
    throw new BreakException();
  }
}
