comparison truffle/com.oracle.truffle.dsl.processor/src/com/oracle/truffle/dsl/processor/TruffleProcessor.java @ 22299:93904485c5a5

Fix typo in TruffleProcessor
author Benoit Daloze <benoit.daloze@jku.at>
date Sat, 10 Oct 2015 13:22:36 +0200
parents dc83cc1f94f2
children
comparison
equal deleted inserted replaced
22298:e2e5168618fc 22299:93904485c5a5
62 return false; 62 return false;
63 } 63 }
64 64
65 private void processImpl(RoundEnvironment env) { 65 private void processImpl(RoundEnvironment env) {
66 // TODO run verifications that other annotations are not processed out of scope of the 66 // TODO run verifications that other annotations are not processed out of scope of the
67 // operation or typelattice. 67 // operation or type lattice.
68 try { 68 try {
69 ProcessorContext.setThreadLocalInstance(new ProcessorContext(processingEnv, this)); 69 ProcessorContext.setThreadLocalInstance(new ProcessorContext(processingEnv, this));
70 for (AnnotationProcessor<?> generator : getGenerators()) { 70 for (AnnotationProcessor<?> generator : getGenerators()) {
71 AbstractParser<?> parser = generator.getParser(); 71 AbstractParser<?> parser = generator.getParser();
72 if (parser.getAnnotationType() != null) { 72 if (parser.getAnnotationType() != null) {