types property

Implementation

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