| 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 a5551c2decf0301fc8d11b8161593a91314c6ba8..34637d403411516b1cbad82fb7393ada0050b984 100644
|
| --- a/pkg/compiler/lib/src/js_emitter/native_emitter.dart
|
| +++ b/pkg/compiler/lib/src/js_emitter/native_emitter.dart
|
| @@ -21,6 +21,7 @@ import 'model.dart';
|
| class NativeEmitter {
|
| final CodeEmitterTask emitterTask;
|
| final NativeData nativeData;
|
| + final InterceptorData interceptorData;
|
|
|
| // Whether the application contains native classes.
|
| bool hasNativeClasses = false;
|
| @@ -36,7 +37,7 @@ class NativeEmitter {
|
| // Caches the methods that have a native body.
|
| Set<FunctionEntity> nativeMethods = new Set<FunctionEntity>();
|
|
|
| - NativeEmitter(this.emitterTask, this.nativeData);
|
| + NativeEmitter(this.emitterTask, this.nativeData, this.interceptorData);
|
|
|
| Compiler get compiler => emitterTask.compiler;
|
|
|
| @@ -44,8 +45,6 @@ class NativeEmitter {
|
|
|
| CodegenWorldBuilder get worldBuilder => compiler.codegenWorldBuilder;
|
|
|
| - InterceptorData get interceptorData => backend.interceptorData;
|
| -
|
| Namer get namer => backend.namer;
|
|
|
| /**
|
|
|