| Index: dart/lib/compiler/implementation/native_emitter.dart
|
| diff --git a/dart/lib/compiler/implementation/native_emitter.dart b/dart/lib/compiler/implementation/native_emitter.dart
|
| index 7b16f897fe2d2ddb2d24359b6f4f29985266ba2a..172bcc764cd3455f605979bc28c3a5ee7f1fcd89 100644
|
| --- a/dart/lib/compiler/implementation/native_emitter.dart
|
| +++ b/dart/lib/compiler/implementation/native_emitter.dart
|
| @@ -360,7 +360,7 @@ function(cls, fields, methods) {
|
| }
|
|
|
| void emitIsChecks(StringBuffer checkBuffer) {
|
| - for (Element type in compiler.universe.isChecks) {
|
| + for (Element type in compiler.codegenWorld.isChecks) {
|
| if (!requiresNativeIsCheck(type)) continue;
|
| String name = compiler.namer.operatorIs(type);
|
| checkBuffer.add("$defPropName(Object.prototype, '$name', ");
|
|
|