| 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 925381d93e7e1197c588ac13abae69f246121ed3..a2ad860565ca4bd8cfb8773583269860070e6c11 100644
|
| --- a/pkg/compiler/lib/src/native/enqueue.dart
|
| +++ b/pkg/compiler/lib/src/native/enqueue.dart
|
| @@ -542,6 +542,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)) {
|
|
|