comparison truffle/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/SLTypes.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 414e82b9fc35
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; 41 package com.oracle.truffle.sl.nodes;
42 42
43 import java.math.*;
44
45 import com.oracle.truffle.api.CompilerDirectives.TruffleBoundary; 43 import com.oracle.truffle.api.CompilerDirectives.TruffleBoundary;
46 import com.oracle.truffle.api.dsl.*; 44 import com.oracle.truffle.api.dsl.ImplicitCast;
47 import com.oracle.truffle.api.dsl.internal.*; 45 import com.oracle.truffle.api.dsl.TypeCast;
48 import com.oracle.truffle.sl.*; 46 import com.oracle.truffle.api.dsl.TypeCheck;
49 import com.oracle.truffle.sl.runtime.*; 47 import com.oracle.truffle.api.dsl.TypeSystem;
48 import com.oracle.truffle.api.dsl.internal.DSLOptions;
49 import com.oracle.truffle.sl.SLLanguage;
50 import com.oracle.truffle.sl.runtime.SLFunction;
51 import com.oracle.truffle.sl.runtime.SLNull;
52 import java.math.BigInteger;
50 53
51 /** 54 /**
52 * The type system of SL, as explained in {@link SLLanguage}. Based on the {@link TypeSystem} 55 * The type system of SL, as explained in {@link SLLanguage}. Based on the {@link TypeSystem}
53 * annotation, the Truffle DSL generates the subclass {@link SLTypesGen} with type test and type 56 * annotation, the Truffle DSL generates the subclass {@link SLTypesGen} with type test and type
54 * conversion methods for all types. In this class, we only cover types where the automatically 57 * conversion methods for all types. In this class, we only cover types where the automatically