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

Unified Diff: pkg/dev_compiler/lib/src/compiler/compiler.dart

Issue 2977183002: fix #30138, reland with windows fix (Closed)
Patch Set: 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/dev_compiler/lib/src/compiler/compiler.dart
diff --git a/pkg/dev_compiler/lib/src/compiler/compiler.dart b/pkg/dev_compiler/lib/src/compiler/compiler.dart
index acef6c8993845b812fe73918a076864abbe937f7..1b33f50f671ed077704f822ecc33bb5dfb34672e 100644
--- a/pkg/dev_compiler/lib/src/compiler/compiler.dart
+++ b/pkg/dev_compiler/lib/src/compiler/compiler.dart
@@ -599,6 +599,7 @@ Uri _sourceToUri(String source) {
return uri;
default:
// Assume a file path.
+ // TODO(jmesserly): shouldn't this be `path.toUri(path.absolute)`?
return new Uri.file(path.absolute(source));
}
}

Powered by Google App Engine
This is Rietveld 408576698