withFieldAnnotationType static method

Iterable<ArtifactTypeMirror> withFieldAnnotationType(
  1. Type annotationType
)

Implementation

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