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

Unified Diff: tools/ddbg.dart

Issue 10908239: Fix dart/tools directory to remove @'raw string' and foo.dynamic. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix merge conflicts 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 | « no previous file | tools/testing/dart/status_expression.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/ddbg.dart
diff --git a/tools/ddbg.dart b/tools/ddbg.dart
index 7bef6048c61a078debdadc451520a3bf5809528d..bb09a5d68848d3fab4ef407d55d0c9fd34b0a057 100644
--- a/tools/ddbg.dart
+++ b/tools/ddbg.dart
@@ -455,7 +455,7 @@ int jsonObjectLength(String string) {
while (index < string.length) {
String char = string[index];
if (char == '"') return index + 1;
- if (char == @'\') index++;
+ if (char == r'\') index++;
if (index == string.length) return index;
index++;
}
« no previous file with comments | « no previous file | tools/testing/dart/status_expression.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698