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 e8c41a11a57aa2077761b3f7f8e769a2c312338a..f763c2709beaac75a42c67a0c49cd3fd044bfd62 100644 |
--- a/pkg/compiler/lib/src/native/enqueue.dart |
+++ b/pkg/compiler/lib/src/native/enqueue.dart |
@@ -367,10 +367,11 @@ class NativeResolutionEnqueuer extends NativeEnqueuerBase { |
super.processNativeClass(classElement); |
// Js Interop interfaces do not have tags. |
- if (backend.nativeData.isJsInteropClass(classElement)) return; |
+ if (backend.nativeClassData.isJsInteropClass(classElement)) return; |
// Since we map from dispatch tags to classes, a dispatch tag must be used |
// on only one native class. |
- for (String tag in backend.nativeData.getNativeTagsOfClass(classElement)) { |
+ for (String tag |
+ in backend.nativeClassData.getNativeTagsOfClass(classElement)) { |
ClassElement owner = tagOwner[tag]; |
if (owner != null) { |
if (owner != classElement) { |