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

Unified Diff: sdk/lib/_internal/dartdoc/test/export_map_test.dart

Issue 13882002: Really fix Dartdoc. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes. Created 7 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
« no previous file with comments | « sdk/lib/_internal/dartdoc/lib/src/dartdoc/utils.dart ('k') | 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/dartdoc/test/export_map_test.dart
diff --git a/sdk/lib/_internal/dartdoc/test/export_map_test.dart b/sdk/lib/_internal/dartdoc/test/export_map_test.dart
index f7b5ab831b24a3ad23d58101f7333f5f7c38a2fc..9ac428869303a8c8335f7b64e0ce45e684460bdb 100644
--- a/sdk/lib/_internal/dartdoc/test/export_map_test.dart
+++ b/sdk/lib/_internal/dartdoc/test/export_map_test.dart
@@ -372,10 +372,12 @@ main() {
});
}
-ExportMap parse(List<String> libraries) =>
- new ExportMap.parse(
- libraries.map(libPath).map(pathToFileUri),
+ExportMap parse(List<String> libraries) {
+ return new ExportMap.parse(
+ libraries.map(libPath)
+ .map(pathToFileUri),
pathos.join(tempDir, 'packages'));
+}
void createLibrary(String name, [String contents]) {
if (contents == null) contents = '';
« no previous file with comments | « sdk/lib/_internal/dartdoc/lib/src/dartdoc/utils.dart ('k') | utils/apidoc/apidoc.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698