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

Unified Diff: sdk/lib/_internal/pub/lib/src/io.dart

Issue 207423003: Support Dart core libraries in source maps. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Revise. Created 6 years, 9 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: sdk/lib/_internal/pub/lib/src/io.dart
diff --git a/sdk/lib/_internal/pub/lib/src/io.dart b/sdk/lib/_internal/pub/lib/src/io.dart
index fd5af928dc402bbd69a081922c53bc20766bff2e..1186cdeb86f012299ca5fc7ba3663b0df7c9bb52 100644
--- a/sdk/lib/_internal/pub/lib/src/io.dart
+++ b/sdk/lib/_internal/pub/lib/src/io.dart
@@ -414,8 +414,8 @@ String get repoRoot {
if (runningFromSdk) {
throw new StateError("Can't get the repo root from the SDK.");
}
- return path.join(
- path.dirname(libraryPath('pub.io')), '..', '..', '..', '..', '..', '..');
+ return path.normalize(path.join(
+ path.dirname(libraryPath('pub.io')), '..', '..', '..', '..', '..', '..'));
}
/// A line-by-line stream of standard input.

Powered by Google App Engine
This is Rietveld 408576698