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

Unified Diff: pkg/compiler/lib/src/native/native.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/compiler/lib/src/native/native.dart
diff --git a/pkg/compiler/lib/src/native/native.dart b/pkg/compiler/lib/src/native/native.dart
index 9e05d5c6d4f3bdb78260e7409077b7ac0dcaab96..ebe88a9a127128b6b6fc1273faccc508638574c8 100644
--- a/pkg/compiler/lib/src/native/native.dart
+++ b/pkg/compiler/lib/src/native/native.dart
@@ -33,17 +33,20 @@ import '../js_emitter/js_emitter.dart' show
CodeEmitterTask,
NativeEmitter;
import '../parser/listener.dart' show
- ElementListener,
- Listener,
+ Listener;
+import '../parser/element_listener.dart' show
+ ElementListener;
+import '../parser/partial_elements.dart' show
PartialMetadataAnnotation;
import '../resolution/members.dart' show
ResolverVisitor;
import '../ssa/ssa.dart';
import '../tokens/token.dart' show
BeginGroupToken,
- EOF_TOKEN,
- STRING_TOKEN,
Token;
+import '../tokens/token_constants.dart' as Tokens show
+ EOF_TOKEN,
+ STRING_TOKEN;
import '../tree/tree.dart';
import '../universe/universe.dart' show SideEffects;
import '../util/util.dart';

Powered by Google App Engine
This is Rietveld 408576698