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

Unified Diff: pkg/dart2js_incremental/lib/diff.dart

Issue 1311783012: Split parser/listener.dart, parser/class_element_listener.dart and tokens/token.dart into smaller l… (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: 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
Index: pkg/dart2js_incremental/lib/diff.dart
diff --git a/pkg/dart2js_incremental/lib/diff.dart b/pkg/dart2js_incremental/lib/diff.dart
index 3a1b0c2ae1611c55f637b25a9c5a8b6ee7043781..b0569d1e399c37219f779a365dfdd7bc8b042d90 100644
--- a/pkg/dart2js_incremental/lib/diff.dart
+++ b/pkg/dart2js_incremental/lib/diff.dart
@@ -19,19 +19,19 @@ import 'package:compiler/src/elements/modelx.dart' as modelx;
import 'package:compiler/src/elements/modelx.dart' show
DeclarationSite;
-import 'package:compiler/src/parser/class_element_parser.dart' show
- PartialClassElement;
-
-import 'package:compiler/src/parser/listener.dart' show
+import 'package:compiler/src/parser/partial_elements.dart' show
+ PartialClassElement,
PartialElement;
import 'package:compiler/src/tokens/token.dart' show
- EOF_TOKEN,
ErrorToken,
- IDENTIFIER_TOKEN,
- KEYWORD_TOKEN,
Token;
+import 'package:compiler/src/tokens/token_constants.dart' show
+ EOF_TOKEN,
+ IDENTIFIER_TOKEN,
+ KEYWORD_TOKEN;
+
class Difference {
final DeclarationSite before;
final DeclarationSite after;

Powered by Google App Engine
This is Rietveld 408576698