| Index: lib/compiler/implementation/js_backend/native_emitter.dart
|
| diff --git a/lib/compiler/implementation/js_backend/native_emitter.dart b/lib/compiler/implementation/js_backend/native_emitter.dart
|
| index 18f58a115afd0694a3c8ab137f4fc5ebb7d4cd94..d1ba99e7758c07277bb27b4ee58c3421bc64d2cf 100644
|
| --- a/lib/compiler/implementation/js_backend/native_emitter.dart
|
| +++ b/lib/compiler/implementation/js_backend/native_emitter.dart
|
| @@ -388,9 +388,9 @@ function(cls, fields, methods) {
|
| }
|
|
|
| void emitIsChecks(Map<String, String> objectProperties) {
|
| - for (Element type in compiler.codegenWorld.isChecks) {
|
| - if (!requiresNativeIsCheck(type)) continue;
|
| - String name = compiler.namer.operatorIs(type);
|
| + for (Element element in compiler.codegenWorld.checkedClasses) {
|
| + if (!requiresNativeIsCheck(element)) continue;
|
| + String name = compiler.namer.operatorIs(element);
|
| objectProperties[name] = 'function() { return false; }';
|
| }
|
| }
|
|
|