Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Unified Diff: pkg/compiler/lib/src/scanner/partial_parser.dart

Issue 1315483006: Split scannerlib.dart into several libraries. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Update try tests Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/compiler/lib/src/scanner/parser_task.dart ('k') | pkg/compiler/lib/src/scanner/scanner.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « pkg/compiler/lib/src/scanner/parser_task.dart ('k') | pkg/compiler/lib/src/scanner/scanner.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698