withAnnotationType static method

Iterable<ArtifactTypeMirror> withAnnotationType(
  1. Type annotationType
)

Implementation

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