Index: pkg/compiler/lib/src/scanner/partial_parser.dart |
diff --git a/pkg/compiler/lib/src/scanner/partial_parser.dart b/pkg/compiler/lib/src/scanner/partial_parser.dart |
index c6ccbf47c195864ec9bac83bfb4869b78336b903..7b3232d56f943307c2cc6fb7d932974599207c98 100644 |
--- a/pkg/compiler/lib/src/scanner/partial_parser.dart |
+++ b/pkg/compiler/lib/src/scanner/partial_parser.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.parser.partial; |
+ |
+import '../diagnostics/messages.dart' show |
+ MessageKind; |
+import '../util/characters.dart' show |
+ $CLOSE_CURLY_BRACKET; |
+ |
+import 'listener.dart' show |
+ Listener; |
+import 'parser.dart' show |
+ Parser; |
+import 'token.dart' show |
+ BeginGroupToken, |
+ EOF_TOKEN, |
+ ErrorToken, |
+ Token; |
class PartialParser extends Parser { |
PartialParser(Listener listener) : super(listener); |