Esempio n. 1
0
 private static boolean isTypeAnnotatedWithExtension(@NotNull KotlinType type) {
   return type.getAnnotations().findAnnotation(FQ_NAMES.extensionFunctionType) != null
       || type.getAnnotations().findAnnotation(FQ_NAMES.deprecatedExtensionAnnotation) != null;
 }
Esempio n. 2
0
 @Override
 @NotNull
 public Annotations getAnnotations() {
   return delegate.getAnnotations();
 }