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

Unified Diff: pkg/compiler/lib/src/parser/partial_parser.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/parser/parser_task.dart ('k') | pkg/compiler/lib/src/patch_parser.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/parser/partial_parser.dart
diff --git a/pkg/compiler/lib/src/scanner/partial_parser.dart b/pkg/compiler/lib/src/parser/partial_parser.dart
similarity index 99%
rename from pkg/compiler/lib/src/scanner/partial_parser.dart
rename to pkg/compiler/lib/src/parser/partial_parser.dart
index 7b3232d56f943307c2cc6fb7d932974599207c98..813da3ac5071a4eb7a91208d16e9b5e51953fc13 100644
--- a/pkg/compiler/lib/src/scanner/partial_parser.dart
+++ b/pkg/compiler/lib/src/parser/partial_parser.dart
@@ -8,16 +8,16 @@ import '../diagnostics/messages.dart' show
MessageKind;
import '../util/characters.dart' show
$CLOSE_CURLY_BRACKET;
+import '../tokens/token.dart' show
+ BeginGroupToken,
+ EOF_TOKEN,
+ ErrorToken,
+ Token;
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/parser/parser_task.dart ('k') | pkg/compiler/lib/src/patch_parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698