| Index: pkg/analyzer/lib/src/summary/link.dart
|
| diff --git a/pkg/analyzer/lib/src/summary/link.dart b/pkg/analyzer/lib/src/summary/link.dart
|
| index ca023c82916be1b0fda82288850666919cbccd59..158cb3bed23474a681b9d4841faf78ac3193ae88 100644
|
| --- a/pkg/analyzer/lib/src/summary/link.dart
|
| +++ b/pkg/analyzer/lib/src/summary/link.dart
|
| @@ -374,14 +374,10 @@ abstract class ClassElementForLink extends Object
|
| _containedNames[constructor.name] = constructor;
|
| }
|
| for (PropertyAccessorElementForLink accessor in accessors) {
|
| - if (accessor.isStatic) {
|
| - _containedNames[accessor.name] = accessor;
|
| - }
|
| + _containedNames[accessor.name] = accessor;
|
| }
|
| for (MethodElementForLink method in methods) {
|
| - if (method.isStatic) {
|
| - _containedNames[method.name] = method;
|
| - }
|
| + _containedNames[method.name] = method;
|
| }
|
| }
|
| return _containedNames.putIfAbsent(
|
|
|