comparison truffle/com.oracle.truffle.api/src/com/oracle/truffle/api/CompilerDirectives.java @ 22157:dc83cc1f94f2

Using fully qualified imports
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Wed, 16 Sep 2015 11:33:22 +0200
parents 130e5f69d1a6
children 863f7bb5f645
comparison
equal deleted inserted replaced
22156:50056a161d7f 22157:dc83cc1f94f2
22 * or visit www.oracle.com if you need additional information or have any 22 * or visit www.oracle.com if you need additional information or have any
23 * questions. 23 * questions.
24 */ 24 */
25 package com.oracle.truffle.api; 25 package com.oracle.truffle.api;
26 26
27 import java.lang.annotation.*; 27 import com.oracle.truffle.api.nodes.ControlFlowException;
28 import java.util.concurrent.*; 28 import java.lang.annotation.ElementType;
29 29 import java.lang.annotation.Retention;
30 import com.oracle.truffle.api.nodes.*; 30 import java.lang.annotation.RetentionPolicy;
31 import java.lang.annotation.Target;
32 import java.util.concurrent.Callable;
31 33
32 /** 34 /**
33 * Directives that influence the optimizations of the Truffle compiler. All of the operations have 35 * Directives that influence the optimizations of the Truffle compiler. All of the operations have
34 * no effect when executed in the Truffle interpreter. 36 * no effect when executed in the Truffle interpreter.
35 */ 37 */