| Index: sdk/lib/_internal/compiler/implementation/string_validator.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/string_validator.dart b/sdk/lib/_internal/compiler/implementation/string_validator.dart
|
| index a5f15e218067e6b85a39ba45c28ced379726c840..4d2aea07e118e52039483657b3a312fab4de2364 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/string_validator.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/string_validator.dart
|
| @@ -49,7 +49,7 @@ class StringValidator {
|
| bool raw = false;
|
| int quoteLength = 1;
|
| int quoteChar = source.next();
|
| - if (quoteChar === $r) {
|
| + if (identical(quoteChar, $r)) {
|
| raw = true;
|
| quoteChar = source.next();
|
| }
|
|
|