Chromium Code Reviews| 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..9104d91856a1fe59ed8b184fff97b298c20423fe 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 |
|
ahe
2012/09/11 06:04:34
Add : after ). Terminate comment with period.
aam-me
2012/09/12 02:12:38
Done.
|
| + if (quoteChar === $AT || quoteChar === $r) { |
| raw = true; |
| quoteChar = source.next(); |
| } |