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

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

Issue 1313073007: Move parser and token related libraries into their own subfolder. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Fix unittests and try Created 5 years, 3 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/partial_parser.dart ('k') | pkg/compiler/lib/src/scanner/scanner_task.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 e305738fa2037c6b1dc54ce4316850390bfa8e85..db14d98a81335d1a1abc74df1414eddb9e791f46 100644
--- a/pkg/compiler/lib/src/scanner/scanner.dart
+++ b/pkg/compiler/lib/src/scanner/scanner.dart
@@ -7,14 +7,14 @@ library dart2js.scanner;
import '../io/source_file.dart' show
SourceFile,
Utf8BytesSourceFile;
-import '../util/characters.dart';
-
-import 'keyword.dart' show
+import '../tokens/keyword.dart' show
Keyword,
KeywordState;
+import '../tokens/token.dart';
+import '../util/characters.dart';
+
import 'string_scanner.dart' show
StringScanner;
-import 'token.dart';
import 'utf8_bytes_scanner.dart' show
Utf8BytesScanner;
« no previous file with comments | « pkg/compiler/lib/src/scanner/partial_parser.dart ('k') | pkg/compiler/lib/src/scanner/scanner_task.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698