| Index: pkg/compiler/lib/src/scanner/token.dart
|
| diff --git a/pkg/compiler/lib/src/scanner/token.dart b/pkg/compiler/lib/src/scanner/token.dart
|
| index 2dff11e07a4b00e82d1a16e6f9c771e607a89bfe..8526d78f3d4832b2abd281044ba468b13891c06c 100644
|
| --- a/pkg/compiler/lib/src/scanner/token.dart
|
| +++ b/pkg/compiler/lib/src/scanner/token.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.tokens;
|
| +
|
| +import 'dart:convert' show
|
| + UTF8;
|
| +import 'dart:collection' show
|
| + HashSet;
|
| +
|
| +import '../diagnostics/spannable.dart' show
|
| + Spannable,
|
| + SpannableAssertionFailure;
|
| +import '../util/characters.dart';
|
| +import '../util/util.dart' show
|
| + computeHashCode;
|
| +
|
| +import 'keyword.dart' show
|
| + Keyword;
|
|
|
| const int EOF_TOKEN = 0;
|
|
|
|
|