| Index: pkg/compiler/lib/src/string_validator.dart
|
| diff --git a/pkg/compiler/lib/src/string_validator.dart b/pkg/compiler/lib/src/string_validator.dart
|
| index 5a7c33104c43441cd3cb3c4081b68ced16b39205..6b519f378358345c98ded8206a2e405e75ac8703 100644
|
| --- a/pkg/compiler/lib/src/string_validator.dart
|
| +++ b/pkg/compiler/lib/src/string_validator.dart
|
| @@ -48,7 +48,6 @@ class StringValidator {
|
| // String has at least one quote. Check it if has three.
|
| // If it only has two, the string must be an empty string literal,
|
| // and end after the second quote.
|
| - bool multiline = false;
|
| if (source.moveNext() && source.current == quoteChar && source.moveNext()) {
|
| int code = source.current;
|
| assert(code == quoteChar); // If not, there is a bug in the parser.
|
| @@ -155,7 +154,6 @@ class StringValidator {
|
| // A two-byte hex escape can't generate an invalid value.
|
| continue;
|
| } else if (code == $u) {
|
| - int escapeStart = index - 1;
|
| index++;
|
| code = iter.hasNext ? iter.next() : 0;
|
| int value = 0;
|
|
|