Chromium Code Reviews| Index: runtime/lib/mirrors_impl.dart |
| diff --git a/runtime/lib/mirrors_impl.dart b/runtime/lib/mirrors_impl.dart |
| index 5e6a4812d0b8bda4574b43fa31eb5b0198bb98ba..895e2f13572eb1c79ee7f53f1302ce810bebd4df 100644 |
| --- a/runtime/lib/mirrors_impl.dart |
| +++ b/runtime/lib/mirrors_impl.dart |
| @@ -220,28 +220,28 @@ String _dartEscape(String str) { |
| String output; |
| switch (input) { |
| case '\\' : |
| - output = @'\\'; |
| + output = r'\\'; |
| break; |
| case "\'" : |
| - output = @"\'"; |
| + output = r"\'"; |
| break; |
| case '\n' : |
| - output = @'\n'; |
| + output = r'\n'; |
| break; |
| case '\r' : |
| - output = @'\r'; |
| + output = r'\r'; |
| break; |
| case '\f' : |
| - output = @'\f'; |
| + output = r'\f'; |
| break; |
| case '\b' : |
| - output = @'\b'; |
| + output = r'\b'; |
| break; |
| case '\t' : |
| - output = @'\t'; |
| + output = r'\t'; |
| break; |
| case '\v' : |
| - output = @'\v'; |
| + output = r'\v'; |
| break; |
| default: |
| int code = input.charCodeAt(0); |