Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(249)

Unified Diff: pkg/compiler/lib/src/js_emitter/native_emitter.dart

Issue 2692303002: Split InterceptorData (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/compiler/lib/src/js_emitter/native_emitter.dart
diff --git a/pkg/compiler/lib/src/js_emitter/native_emitter.dart b/pkg/compiler/lib/src/js_emitter/native_emitter.dart
index ef26ac69db0bb678d0bcd3a86bd0ac239141f1a5..3d99fccfbaf463fb55dd0da8642484e564a6ad8a 100644
--- a/pkg/compiler/lib/src/js_emitter/native_emitter.dart
+++ b/pkg/compiler/lib/src/js_emitter/native_emitter.dart
@@ -346,8 +346,7 @@ class NativeEmitter {
}
bool isSupertypeOfNativeClass(ClassEntity element) {
- if (backend.interceptorData.classesMixedIntoInterceptedClasses
- .contains(element)) {
+ if (backend.interceptorData.isMixedIntoInterceptedClass(element)) {
return true;
}

Powered by Google App Engine
This is Rietveld 408576698