use of com.oracle.truffle.dsl.processor.java.model.CodeTypeElement in project graal by oracle.
the class InstrumentableProcessor method generateWrapperOnly.
private CodeTypeElement generateWrapperOnly(ProcessorContext context, Element e) {
CodeTypeElement wrapper = generateWrapper(context, e, true);
if (wrapper == null) {
return null;
}
assertNoErrorExpected(e);
return wrapper;
}
Aggregations