in src/main/java/com/microsoft/azure/functions/worker/broker/CoreTypeResolver.java [132:142]
static boolean checkImplicitOutput(Parameter parameter) {
Annotation[] annotations = parameter.getAnnotations();
for (Annotation annotation : annotations) {
for (Annotation item : annotation.annotationType().getAnnotations()) {
if (item.annotationType().getName().equals(Constants.HAS_IMPLICIT_OUTPUT_QUALIFIED_NAME)) {
if (hasImplicitOutput(item)) return true;
}
}
}
return false;
}