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

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

Issue 2872613003: Pass data objects directly to NativeEmitter (Closed)
Patch Set: Cleanup Created 3 years, 7 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
« no previous file with comments | « no previous file | pkg/compiler/lib/src/js_emitter/lazy_emitter/emitter.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/js_emitter/code_emitter_task.dart
diff --git a/pkg/compiler/lib/src/js_emitter/code_emitter_task.dart b/pkg/compiler/lib/src/js_emitter/code_emitter_task.dart
index 1dc8b95239e32691b5ae61d834c3a0aab31dce1e..24d6fb9b0e68b3250cde93d80c6fe60cf2f62de4 100644
--- a/pkg/compiler/lib/src/js_emitter/code_emitter_task.dart
+++ b/pkg/compiler/lib/src/js_emitter/code_emitter_task.dart
@@ -168,8 +168,8 @@ class CodeEmitterTask extends CompilerTask {
void createEmitter(Namer namer, ClosedWorld closedWorld,
CodegenWorldBuilder codegenWorldBuilder) {
measure(() {
- _nativeEmitter = new NativeEmitter(
- this, closedWorld.nativeData, closedWorld.interceptorData);
+ _nativeEmitter = new NativeEmitter(this, closedWorld, codegenWorldBuilder,
+ backend.nativeCodegenEnqueuer);
_emitter = _emitterFactory.createEmitter(this, namer, closedWorld);
metadataCollector = new MetadataCollector(
compiler.options,
« no previous file with comments | « no previous file | pkg/compiler/lib/src/js_emitter/lazy_emitter/emitter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698