| Index: pkg/dartdoc/lib/mirrors_util.dart
|
| diff --git a/pkg/dartdoc/lib/mirrors_util.dart b/pkg/dartdoc/lib/mirrors_util.dart
|
| index ff1ca99f7cee8d1ab5e6e20e258eb5ed0cc113ae..a87085f11c91efd164b210678eb83063f2319923 100644
|
| --- a/pkg/dartdoc/lib/mirrors_util.dart
|
| +++ b/pkg/dartdoc/lib/mirrors_util.dart
|
| @@ -20,7 +20,7 @@ Iterable<ClassMirror> computeSubdeclarations(ClassMirror type) {
|
| type = type.declaration;
|
| var subtypes = <ClassMirror>[];
|
| type.system.libraries.forEach((_, library) {
|
| - for (ClassMirror otherType in library.types.values) {
|
| + for (ClassMirror otherType in library.classes.values) {
|
| var superClass = otherType.superclass;
|
| if (superClass !== null) {
|
| superClass = superClass.declaration;
|
|
|