withMixinType static method

Iterable<ArtifactTypeMirror> withMixinType(
  1. Type mixinType
)

Implementation

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