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

Unified Diff: pkg/front_end/tool/perf.dart

Issue 2532053005: Store library paths relative to a given application root folder. (Closed)
Patch Set: Revert changes to testcase baseline Created 4 years, 1 month 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 | « no previous file | pkg/kernel/bin/dartk.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/front_end/tool/perf.dart
diff --git a/pkg/front_end/tool/perf.dart b/pkg/front_end/tool/perf.dart
index 4d61e9bdfb5f6e5cdce755ef7172cd241d0d97a9..c5f2ec4704862124574a4053b7519f89397e169a 100644
--- a/pkg/front_end/tool/perf.dart
+++ b/pkg/front_end/tool/perf.dart
@@ -241,7 +241,7 @@ Future<Program> generateKernel(Uri entryUri) async {
var repository = new Repository();
DartLoader loader = new DartLoader(repository, options, packages);
- Program program = loader.loadProgram(entryUri.path);
+ Program program = loader.loadProgram(entryUri);
List errors = loader.errors;
if (errors.isNotEmpty) {
const int errorLimit = 100;
« no previous file with comments | « no previous file | pkg/kernel/bin/dartk.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698