comparison truffle/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/controlflow/SLContinueException.java @ 22157:dc83cc1f94f2

Using fully qualified imports
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Wed, 16 Sep 2015 11:33:22 +0200
parents 503529c65456
children
comparison
equal deleted inserted replaced
22156:50056a161d7f 22157:dc83cc1f94f2
38 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 38 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
39 * SOFTWARE. 39 * SOFTWARE.
40 */ 40 */
41 package com.oracle.truffle.sl.nodes.controlflow; 41 package com.oracle.truffle.sl.nodes.controlflow;
42 42
43 import com.oracle.truffle.api.nodes.*; 43 import com.oracle.truffle.api.nodes.ControlFlowException;
44 44
45 /** 45 /**
46 * Exception thrown by the {@link SLContinueNode continue statement} and caught by the 46 * Exception thrown by the {@link SLContinueNode continue statement} and caught by the
47 * {@link SLWhileNode loop statement}. Since the exception is stateless, i.e., has no instance 47 * {@link SLWhileNode loop statement}. Since the exception is stateless, i.e., has no instance
48 * fields, we can use a {@link #SINGLETON} to avoid memory allocation during interpretation. 48 * fields, we can use a {@link #SINGLETON} to avoid memory allocation during interpretation.