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