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

Unified Diff: pkg/compiler/lib/src/scanner/array_based_scanner.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
Index: pkg/compiler/lib/src/scanner/array_based_scanner.dart
diff --git a/pkg/compiler/lib/src/scanner/array_based_scanner.dart b/pkg/compiler/lib/src/scanner/array_based_scanner.dart
index 457be848cded250cb47864569f3479eac17c3638..090af555573adabbc0aa0f8d292ddd97bdc21e3e 100644
--- a/pkg/compiler/lib/src/scanner/array_based_scanner.dart
+++ b/pkg/compiler/lib/src/scanner/array_based_scanner.dart
@@ -2,7 +2,32 @@
// 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.array_based;
+
+import '../io/source_file.dart' show
+ SourceFile;
+import '../util/characters.dart' show
+ $LF,
+ $STX;
+import '../util/util.dart' show
+ Link;
+
+import 'keyword.dart' show
+ Keyword;
+import 'scanner.dart' show
+ AbstractScanner;
+import 'token.dart' show
+ BeginGroupToken,
+ COMMENT_INFO,
+ ErrorToken,
+ EOF_INFO,
+ LT_TOKEN,
+ KeywordToken,
+ OPEN_CURLY_BRACKET_TOKEN,
+ PrecedenceInfo,
+ STRING_INTERPOLATION_TOKEN,
+ SymbolToken,
+ Token;
abstract class ArrayBasedScanner extends AbstractScanner {
ArrayBasedScanner(SourceFile file, bool includeComments)
« no previous file with comments | « pkg/compiler/lib/src/resolution/resolution.dart ('k') | pkg/compiler/lib/src/scanner/class_element_parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698