| Index: lib/compiler/implementation/string_validator.dart
|
| diff --git a/lib/compiler/implementation/string_validator.dart b/lib/compiler/implementation/string_validator.dart
|
| index 1017931b4dd2d25908d5d7c6193831a31b920b84..c127942250ecbe75576d702fac47d4c03665eb76 100644
|
| --- a/lib/compiler/implementation/string_validator.dart
|
| +++ b/lib/compiler/implementation/string_validator.dart
|
| @@ -49,7 +49,8 @@ class StringValidator {
|
| bool raw = false;
|
| int quoteLength = 1;
|
| int quoteChar = source.next();
|
| - if (quoteChar == $AT) {
|
| + // TODO(aprelev@gmail.com): Remove deprecated "quoteChar === $AT ||" below.
|
| + if (quoteChar === $AT || quoteChar === $r) {
|
| raw = true;
|
| quoteChar = source.next();
|
| }
|
|
|