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