allTypeInfoPath method

Iterable<TypeInfo> allTypeInfoPath()

Implementation

Iterable<TypeInfo> allTypeInfoPath() sync* {
  for (var element in allClassElementsPath()) {
    yield typeMap.fromDartType(element.thisType, context: typeArgumentsMap());
  }
}