| 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 d9ab3123aa52e67f42569b3cff92ab92bb2bd7fb..e305738fa2037c6b1dc54ce4316850390bfa8e85 100644
|
| --- a/pkg/compiler/lib/src/scanner/scanner.dart
|
| +++ b/pkg/compiler/lib/src/scanner/scanner.dart
|
| @@ -2,7 +2,22 @@
|
| // 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;
|
| +library dart2js.scanner;
|
| +
|
| +import '../io/source_file.dart' show
|
| + SourceFile,
|
| + Utf8BytesSourceFile;
|
| +import '../util/characters.dart';
|
| +
|
| +import 'keyword.dart' show
|
| + Keyword,
|
| + KeywordState;
|
| +import 'string_scanner.dart' show
|
| + StringScanner;
|
| +import 'token.dart';
|
| +import 'utf8_bytes_scanner.dart' show
|
| + Utf8BytesScanner;
|
| +
|
|
|
| abstract class Scanner {
|
| Token tokenize();
|
|
|