comparison graal/com.oracle.truffle.codegen.processor/src/com/oracle/truffle/codegen/processor/node/NodeParser.java @ 7506:40133ce026c6

Project dependency fixes.
author Christian Humer <christian.humer@gmail.com>
date Fri, 18 Jan 2013 14:38:43 +0100
parents d295ab2902fb
children 5e3d1a68664e
comparison
equal deleted inserted replaced
7505:1b00e067eafe 7506:40133ce026c6
39 import com.oracle.truffle.codegen.processor.template.*; 39 import com.oracle.truffle.codegen.processor.template.*;
40 import com.oracle.truffle.codegen.processor.typesystem.*; 40 import com.oracle.truffle.codegen.processor.typesystem.*;
41 41
42 public class NodeParser extends TemplateParser<NodeData>{ 42 public class NodeParser extends TemplateParser<NodeData>{
43 43
44 private static final List<Class<? extends Annotation>> annotations = Arrays.asList( 44 public static final List<Class<? extends Annotation>> ANNOTATIONS = Arrays.asList(
45 Generic.class, GuardCheck.class, TypeSystemReference.class, ShortCircuit.class, Specialization.class, 45 Generic.class, GuardCheck.class, TypeSystemReference.class, ShortCircuit.class, Specialization.class,
46 SpecializationGuard.class, SpecializationListener.class, SpecializationThrows.class); 46 SpecializationGuard.class, SpecializationListener.class, SpecializationThrows.class);
47 47
48 private static final boolean DEBUG = false; 48 private static final boolean DEBUG = false;
49 49
773 return null; 773 return null;
774 } 774 }
775 775
776 @Override 776 @Override
777 public List<Class< ? extends Annotation>> getTypeDelegatedAnnotationTypes() { 777 public List<Class< ? extends Annotation>> getTypeDelegatedAnnotationTypes() {
778 return annotations; 778 return ANNOTATIONS;
779 } 779 }
780 780
781 } 781 }