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

Unified Diff: pkg/dartdoc/lib/src/dartdoc/utils.dart

Issue 10963049: migrate raw string to new syntax in dartdoc (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 3 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 | « pkg/dartdoc/lib/markdown.dart ('k') | pkg/dartdoc/lib/src/markdown/block_parser.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/dartdoc/lib/src/dartdoc/utils.dart
===================================================================
--- pkg/dartdoc/lib/src/dartdoc/utils.dart (revision 12745)
+++ pkg/dartdoc/lib/src/dartdoc/utils.dart (working copy)
@@ -52,8 +52,8 @@
elements.sort((a,b) {
String aName = a.simpleName;
String bName = b.simpleName;
- bool doma = aName.startsWith(@"$dom");
- bool domb = bName.startsWith(@"$dom");
+ bool doma = aName.startsWith(r"$dom");
+ bool domb = bName.startsWith(r"$dom");
return doma == domb ? aName.compareTo(bName) : doma ? 1 : -1;
});
return elements;
« no previous file with comments | « pkg/dartdoc/lib/markdown.dart ('k') | pkg/dartdoc/lib/src/markdown/block_parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698