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

Unified Diff: tests/compiler/dart2js/source_map_name_test.dart

Issue 2846433003: Run closed_world2_test using the normal compiler pipeline. (Closed)
Patch Set: Created 3 years, 8 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: tests/compiler/dart2js/source_map_name_test.dart
diff --git a/tests/compiler/dart2js/source_map_name_test.dart b/tests/compiler/dart2js/source_map_name_test.dart
index f0e1ec4583849396fc4a972dc9eb02213a88b093..8a92238bc4898851a5be6188282d2e193483902f 100644
--- a/tests/compiler/dart2js/source_map_name_test.dart
+++ b/tests/compiler/dart2js/source_map_name_test.dart
@@ -82,17 +82,18 @@ main() {
CompilationResult result =
await runCompiler(memorySourceFiles: {'main.dart': SOURCE});
Compiler compiler = result.compiler;
+ LibraryElement mainApp = compiler.mainApp;
Element lookup(String name) {
Element element;
int dotPosition = name.indexOf('.');
if (dotPosition != -1) {
String clsName = name.substring(0, dotPosition);
- ClassElement cls = compiler.mainApp.find(clsName);
+ ClassElement cls = mainApp.find(clsName);
Expect.isNotNull(cls, "Class '$clsName' not found.");
element = cls.localLookup(name.substring(dotPosition + 1));
} else {
- element = compiler.mainApp.find(name);
+ element = mainApp.find(name);
}
Expect.isNotNull(element, "Element '$name' not found.");
return element;

Powered by Google App Engine
This is Rietveld 408576698