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

Using fully qualified imports
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Wed, 16 Sep 2015 11:33:22 +0200
parents 9c8c0937da41
children
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.dsl; 25 package com.oracle.truffle.api.dsl;
26 26
27 import java.lang.annotation.*; 27 import java.lang.annotation.ElementType;
28 import java.lang.annotation.Retention;
29 import java.lang.annotation.RetentionPolicy;
30 import java.lang.annotation.Target;
28 31
29 /** 32 /**
30 * Overrides the standard way of checking for a certain type in a {@link TypeSystem}. This is useful 33 * Overrides the standard way of checking for a certain type in a {@link TypeSystem}. This is useful
31 * for types where the guest language specific type check can be implemented more efficiently than a 34 * for types where the guest language specific type check can be implemented more efficiently than a
32 * direct cast. The annotated method must be contained in a {@link TypeSystem} annotated class. Type 35 * direct cast. The annotated method must be contained in a {@link TypeSystem} annotated class. Type