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

Unified Diff: pkg/compiler/lib/src/js_emitter/full_emitter/emitter.dart

Issue 2972523002: Implement JsKernelToElementMap through KernelToElementMapBase (Closed)
Patch Set: Updated cf. comments Created 3 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/full_emitter/emitter.dart
diff --git a/pkg/compiler/lib/src/js_emitter/full_emitter/emitter.dart b/pkg/compiler/lib/src/js_emitter/full_emitter/emitter.dart
index a7c5b2a89a3eb2b7461cbfac362c31279ffa64f4..a84297d1f0bb663956ddc6b54f8389e846351e25 100644
--- a/pkg/compiler/lib/src/js_emitter/full_emitter/emitter.dart
+++ b/pkg/compiler/lib/src/js_emitter/full_emitter/emitter.dart
@@ -76,10 +76,10 @@ class EmitterFactory implements js_emitter.EmitterFactory {
bool get supportsReflection => true;
@override
- Emitter createEmitter(
- CodeEmitterTask task, Namer namer, ClosedWorld closedWorld) {
- return new Emitter(task.compiler, namer, closedWorld, generateSourceMap,
- task, task.sorter);
+ Emitter createEmitter(CodeEmitterTask task, Namer namer,
+ ClosedWorld closedWorld, Sorter sorter) {
+ return new Emitter(
+ task.compiler, namer, closedWorld, generateSourceMap, task, sorter);
}
}
« no previous file with comments | « pkg/compiler/lib/src/js_emitter/code_emitter_task.dart ('k') | 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