withExtendsType static method

Iterable<ArtifactTypeMirror> withExtendsType(
  1. Type extendsType
)

Implementation

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