| Index: pkg/docgen/lib/src/models/class.dart
|
| diff --git a/pkg/docgen/lib/src/models/class.dart b/pkg/docgen/lib/src/models/class.dart
|
| index 555b1ddb9cd6f22284e6edd4712ded743dbb72fe..07cfb81ed62876855796a94a5c77233c9f576476 100644
|
| --- a/pkg/docgen/lib/src/models/class.dart
|
| +++ b/pkg/docgen/lib/src/models/class.dart
|
| @@ -86,8 +86,8 @@ class Class extends OwnedIndexable<dart2js_mirrors.Dart2JsInterfaceTypeMirror>
|
| interfaces = superinterfaces.toList();
|
| variables = createVariables(
|
| dart2js_util.variablesOf(classMirror.declarations), this);
|
| - methods = createMethods(classMirror.declarations.values.where(
|
| - (mirror) => mirror is MethodMirror), this);
|
| + methods = createMethods(dart2js_util.anyMethodOf(classMirror.declarations),
|
| + this);
|
|
|
| // Tell superclass that you are a subclass, unless you are not
|
| // visible or an intermediary mixin class.
|
|
|