| Index: pkg/dev_compiler/lib/src/compiler/extension_types.dart
|
| diff --git a/pkg/dev_compiler/lib/src/compiler/extension_types.dart b/pkg/dev_compiler/lib/src/compiler/extension_types.dart
|
| index 7afb9f38a5127a8f9fbe47df2d6c0cbef6defce6..1e26fb46598c49dc8d9497d8dcc3cfd41001c060 100644
|
| --- a/pkg/dev_compiler/lib/src/compiler/extension_types.dart
|
| +++ b/pkg/dev_compiler/lib/src/compiler/extension_types.dart
|
| @@ -144,11 +144,11 @@ class ExtensionTypeSet {
|
|
|
| bool isNativeClass(Element element) => _setContains(_nativeTypes, element);
|
|
|
| - bool _isNativeInterface(Element element) =>
|
| + bool isNativeInterface(Element element) =>
|
| _setContains(_extensibleTypes, element);
|
|
|
| bool hasNativeSubtype(DartType type) =>
|
| - _isNativeInterface(type.element) || isNativeClass(type.element);
|
| + isNativeInterface(type.element) || isNativeClass(type.element);
|
|
|
| /// Collects all supertypes that may themselves contain native subtypes,
|
| /// excluding [Object], for example `List` is implemented by several native
|
|
|