| Index: pkg/compiler/lib/src/scanner/scanner.dart
|
| diff --git a/pkg/compiler/lib/src/scanner/scanner.dart b/pkg/compiler/lib/src/scanner/scanner.dart
|
| index 63f4bd0afce2cb4fa211ced49e9cae1e28b5d2f5..f0698611482b302293d982b6bccd4f5b91af214a 100644
|
| --- a/pkg/compiler/lib/src/scanner/scanner.dart
|
| +++ b/pkg/compiler/lib/src/scanner/scanner.dart
|
| @@ -684,7 +684,8 @@ abstract class AbstractScanner implements Scanner {
|
| int tokenizeFractionPart(int next, int start) {
|
| bool done = false;
|
| bool hasDigit = false;
|
| - LOOP: while (!done) {
|
| + LOOP:
|
| + while (!done) {
|
| if ($0 <= next && next <= $9) {
|
| hasDigit = true;
|
| } else if (identical($e, next) || identical($E, next)) {
|
| @@ -1002,7 +1003,8 @@ abstract class AbstractScanner implements Scanner {
|
| bool asciiOnlyLine = true;
|
| int unicodeStart = start;
|
| int next = advance(); // Advance past the (last) quote (of three).
|
| - outer: while (!identical(next, $EOF)) {
|
| + outer:
|
| + while (!identical(next, $EOF)) {
|
| while (!identical(next, quoteChar)) {
|
| if (identical(next, $LF)) {
|
| if (!asciiOnlyLine) {
|
|
|