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

Unified Diff: pkg/dart2js_incremental/lib/caching_compiler.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
« no previous file with comments | « pkg/compiler/lib/src/use_unused_api.dart ('k') | pkg/dart2js_incremental/lib/dart2js_incremental.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/dart2js_incremental/lib/caching_compiler.dart
diff --git a/pkg/dart2js_incremental/lib/caching_compiler.dart b/pkg/dart2js_incremental/lib/caching_compiler.dart
index 50893ef0b86f32607ea8eb745a978c13f02c96aa..aeab05acc6176c37e8c6c70bb0e19cdff83bc1db 100644
--- a/pkg/dart2js_incremental/lib/caching_compiler.dart
+++ b/pkg/dart2js_incremental/lib/caching_compiler.dart
@@ -65,7 +65,7 @@ Future<Compiler> reuseCompiler(
null);
JavaScriptBackend backend = compiler.backend;
- OldEmitter emitter = backend.emitter.emitter;
+ full.Emitter emitter = backend.emitter.emitter;
// Much like a scout, an incremental compiler is always prepared. For
// mixins, classes, and lazy statics, at least.
@@ -102,7 +102,7 @@ Future<Compiler> reuseCompiler(
..enqueuer.codegen.hasEnqueuedReflectiveStaticFields = false
..compilationFailed = false;
JavaScriptBackend backend = compiler.backend;
- OldEmitter emitter = backend.emitter.emitter;
+ full.Emitter emitter = backend.emitter.emitter;
// TODO(ahe): Seems this cache only serves to tell
// [emitter.invalidateCaches] if it was invoked on a full compile (in
« no previous file with comments | « pkg/compiler/lib/src/use_unused_api.dart ('k') | pkg/dart2js_incremental/lib/dart2js_incremental.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698