withMethodAnnotationType static method

Iterable<ArtifactTypeMirror> withMethodAnnotationType(
  1. Type annotationType
)

Implementation

static Iterable<ArtifactTypeMirror> withMethodAnnotationType(
  Type annotationType,
) sync* {
  for (MapEntry<Type, $AClass> entry
      in ArtifactAccessor.withMethodAnnotationType(annotationType)) {
    yield ArtifactTypeMirror(entry.value.classType, entry.value);
  }
}