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

Unified Diff: tests/compiler/dart2js/kernel/compiler_helper.dart

Issue 2932793005: Rename FrontEndStrategy to FrontendStrategy (Closed)
Patch Set: Created 3 years, 6 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 | « tests/compiler/dart2js/kernel/compile_from_dill_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js/kernel/compiler_helper.dart
diff --git a/tests/compiler/dart2js/kernel/compiler_helper.dart b/tests/compiler/dart2js/kernel/compiler_helper.dart
index e69a5fd2d00a73bd61bf34e716c9d3513c8c0615..ba8ab72306547dd7f9f109c313a4eac01fbf0e93 100644
--- a/tests/compiler/dart2js/kernel/compiler_helper.dart
+++ b/tests/compiler/dart2js/kernel/compiler_helper.dart
@@ -69,8 +69,8 @@ Future<List<CompileFunction>> compileMultiple(List<String> sources) async {
]);
ElementResolutionWorldBuilder.useInstantiationMap = true;
compiler2.resolution.retainCachesForTesting = true;
- KernelFrontEndStrategy frontEndStrategy = compiler2.frontEndStrategy;
- KernelToElementMapImpl elementMap = frontEndStrategy.elementMap;
+ KernelFrontEndStrategy frontendStrategy = compiler2.frontendStrategy;
+ KernelToElementMapImpl elementMap = frontendStrategy.elementMap;
ir.Program program = new ir.Program(
libraries:
compiler.backend.kernelTask.kernel.libraryDependencies(uri));
@@ -115,8 +115,8 @@ Future<Pair<Compiler, Compiler>> analyzeOnly(
]);
ElementResolutionWorldBuilder.useInstantiationMap = true;
compiler2.resolution.retainCachesForTesting = true;
- KernelFrontEndStrategy frontEndStrategy = compiler2.frontEndStrategy;
- KernelToElementMapImpl elementMap = frontEndStrategy.elementMap;
+ KernelFrontEndStrategy frontendStrategy = compiler2.frontendStrategy;
+ KernelToElementMapImpl elementMap = frontendStrategy.elementMap;
compiler2.libraryLoader = new MemoryDillLibraryLoaderTask(
elementMap,
compiler2.reporter,
« no previous file with comments | « tests/compiler/dart2js/kernel/compile_from_dill_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698