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

Unified Diff: sdk/lib/_internal/dartdoc/lib/src/dartdoc/comment_map.dart

Issue 11358134: Fix for triple-slash dartdocs (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Indent multi-line string 2 more spaces. Created 8 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 | sdk/lib/_internal/dartdoc/test/comment_map_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/dartdoc/lib/src/dartdoc/comment_map.dart
diff --git a/sdk/lib/_internal/dartdoc/lib/src/dartdoc/comment_map.dart b/sdk/lib/_internal/dartdoc/lib/src/dartdoc/comment_map.dart
index 77b7e07f3e4831ef431455222fc1fa35229caea8..14f17bd4bb5abbeece49a899262146142a899903 100644
--- a/sdk/lib/_internal/dartdoc/lib/src/dartdoc/comment_map.dart
+++ b/sdk/lib/_internal/dartdoc/lib/src/dartdoc/comment_map.dart
@@ -78,7 +78,7 @@ class CommentMap {
if (lastComment == null) {
lastComment = line;
} else {
- lastComment = '$lastComment$line';
+ lastComment = '$lastComment\n$line';
}
}
} else if (token.kind == dart2js.HASH_TOKEN) {
« no previous file with comments | « no previous file | sdk/lib/_internal/dartdoc/test/comment_map_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698