| Index: pkg/compiler/lib/src/native/enqueue.dart
|
| diff --git a/pkg/compiler/lib/src/native/enqueue.dart b/pkg/compiler/lib/src/native/enqueue.dart
|
| index 6b39359aa8889c91d192ff1a4cb518c632b35409..42ceba2d4b2f9f80c23f757dba1a6a137730675d 100644
|
| --- a/pkg/compiler/lib/src/native/enqueue.dart
|
| +++ b/pkg/compiler/lib/src/native/enqueue.dart
|
| @@ -544,6 +544,8 @@ class NativeResolutionEnqueuer extends NativeEnqueuerBase {
|
| void processNativeClass(ClassElement classElement) {
|
| super.processNativeClass(classElement);
|
|
|
| + // Js Interop interfaces do not have tags.
|
| + if (classElement.isJsInterop) return;
|
| // Since we map from dispatch tags to classes, a dispatch tag must be used
|
| // on only one native class.
|
| for (String tag in nativeTagsOfClass(classElement)) {
|
|
|