comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/debug/KillException.java @ 14570:c828417b7037

Remove TODOs no longer relevant
author Michael Van De Vanter <michael.van.de.vanter@oracle.com>
date Mon, 17 Mar 2014 12:39:25 -0700
parents 3f27e57439ed
children
comparison
equal deleted inserted replaced
14542:084603b0bfbb 14570:c828417b7037
24 */ 24 */
25 package com.oracle.truffle.api.debug; 25 package com.oracle.truffle.api.debug;
26 26
27 import com.oracle.truffle.api.nodes.*; 27 import com.oracle.truffle.api.nodes.*;
28 28
29 // TODO (mlvdv) does this need to extend ControlFlowException? It was originally part of the Ruby Shell.
30 /** 29 /**
31 * Controls breaking out of an execution context, such as a shell or eval. 30 * Controls breaking out of an execution context, such as a shell or eval.
32 */ 31 */
33 public final class KillException extends ControlFlowException { 32 public final class KillException extends ControlFlowException {
34 33