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

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

Issue 1223293002: dart2js: Rename old emitter to full emitter and make it its own library. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 5 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/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 9d700b3480bb1f42801ebb94f2add4b723a93758..0b9cdb2e3b5435c9fe1621785803466f36f6a2cc 100644
--- a/pkg/compiler/lib/src/js_emitter/code_emitter_task.dart
+++ b/pkg/compiler/lib/src/js_emitter/code_emitter_task.dart
@@ -40,7 +40,7 @@ class CodeEmitterTask extends CompilerTask {
nativeEmitter = new NativeEmitter(this);
emitter = USE_LAZY_EMITTER
? new lazy_js_emitter.Emitter(compiler, namer, nativeEmitter)
- : new OldEmitter(compiler, namer, generateSourceMap, this);
+ : new full_js_emitter.Emitter(compiler, namer, generateSourceMap, this);
metadataCollector = new MetadataCollector(compiler, emitter);
}
« no previous file with comments | « pkg/compiler/lib/src/dump_info.dart ('k') | pkg/compiler/lib/src/js_emitter/full_emitter/class_builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698