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

Unified Diff: sdk/lib/_internal/compiler/implementation/mirrors/dart2js_mirror.dart

Issue 12614006: Revert "Remove pkg from apidoc." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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
« no previous file with comments | « no previous file | utils/apidoc/apidoc.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/compiler/implementation/mirrors/dart2js_mirror.dart
diff --git a/sdk/lib/_internal/compiler/implementation/mirrors/dart2js_mirror.dart b/sdk/lib/_internal/compiler/implementation/mirrors/dart2js_mirror.dart
index 837c555f92a2ed2ab3123301c8441cf4b38a83d9..3c78647e47b276c9cbb939fe44d03161727f2156 100644
--- a/sdk/lib/_internal/compiler/implementation/mirrors/dart2js_mirror.dart
+++ b/sdk/lib/_internal/compiler/implementation/mirrors/dart2js_mirror.dart
@@ -216,10 +216,10 @@ Future<String> compile(Path script,
new FormattingDiagnosticHandler(provider).diagnosticHandler;
}
Uri scriptUri = cwd.resolve(script.toString());
- Uri libraryUri = cwd.resolve(appendSlash(libraryRoot.toString()));
+ Uri libraryUri = cwd.resolve('${libraryRoot}/');
Uri packageUri = null;
if (packageRoot != null) {
- packageUri = cwd.resolve(appendSlash(packageRoot.toString()));
+ packageUri = cwd.resolve('${packageRoot}/');
}
return api.compile(scriptUri, libraryUri, packageUri,
provider.readStringFromUri, diagnosticHandler, options);
@@ -240,10 +240,10 @@ Future<MirrorSystem> analyze(List<Path> libraries,
diagnosticHandler =
new FormattingDiagnosticHandler(provider).diagnosticHandler;
}
- Uri libraryUri = cwd.resolve(appendSlash(libraryRoot.toString()));
+ Uri libraryUri = cwd.resolve('${libraryRoot}/');
Uri packageUri = null;
if (packageRoot != null) {
- packageUri = cwd.resolve(appendSlash(packageRoot.toString()));
+ packageUri = cwd.resolve('${packageRoot}/');
}
options = new List<String>.from(options);
options.add('--analyze-only');
« no previous file with comments | « no previous file | utils/apidoc/apidoc.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698