withMixin<T> static method

Iterable<ArtifactTypeMirror> withMixin<T>()

Implementation

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