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