| Index: lib/compiler/implementation/scanner/scanner.dart
|
| diff --git a/lib/compiler/implementation/scanner/scanner.dart b/lib/compiler/implementation/scanner/scanner.dart
|
| index 7c51c03440fd0cbac58b27cb5c2af0b2073ccec7..647880b3340daf5e633fe9c5c50d2a822beccab8 100644
|
| --- a/lib/compiler/implementation/scanner/scanner.dart
|
| +++ b/lib/compiler/implementation/scanner/scanner.dart
|
| @@ -2,6 +2,8 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| +part of scanner;
|
| +
|
| abstract class Scanner {
|
| Token tokenize();
|
| }
|
| @@ -256,7 +258,7 @@ abstract class AbstractScanner<T extends SourceString> implements Scanner {
|
| }
|
|
|
| // TODO(ahe): Would a range check be faster?
|
| - if (identical(next, $1) || identical(next, $2) || identical(next, $3)
|
| + if (identical(next, $1) || identical(next, $2) || identical(next, $3)
|
| || identical(next, $4) || identical(next, $5) || identical(next, $6)
|
| || identical(next, $7) || identical(next, $8) || identical(next, $9)) {
|
| return tokenizeNumber(next);
|
|
|