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