withInterfaceType static method

Iterable<ArtifactTypeMirror> withInterfaceType(
  1. Type interfaceType
)

Implementation

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