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

Unified Diff: runtime/bin/process_impl.dart

Issue 10977027: Update all occurrences of raw strings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Don't disable just yet. 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
Index: runtime/bin/process_impl.dart
diff --git a/runtime/bin/process_impl.dart b/runtime/bin/process_impl.dart
index c618a5bf6e6380c5f04a054f72cd02e8c1489782..cb11083c723b54788c2af81619f75fbd91a7406d 100644
--- a/runtime/bin/process_impl.dart
+++ b/runtime/bin/process_impl.dart
@@ -98,9 +98,9 @@ class _Process extends NativeFieldWrapperClass1 implements Process {
}
sb.add(argument.substring(nextPos, quotePos - numBackslash));
for (var i = 0; i < numBackslash; i++) {
- sb.add(@'\\');
+ sb.add(r'\\');
}
- sb.add(@'\"');
+ sb.add(r'\"');
nextPos = quotePos + 1;
quotePos = argument.indexOf('"', nextPos);
}

Powered by Google App Engine
This is Rietveld 408576698