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

Unified Diff: pkg/compiler/lib/src/js_emitter/lazy_emitter/emitter.dart

Issue 1394063004: Use common.dart to re-export commonly used entities. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 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/js_emitter/js_emitter.dart ('k') | pkg/compiler/lib/src/js_emitter/model.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/js_emitter/lazy_emitter/emitter.dart
diff --git a/pkg/compiler/lib/src/js_emitter/lazy_emitter/emitter.dart b/pkg/compiler/lib/src/js_emitter/lazy_emitter/emitter.dart
index 354defaeda52259dcb534b1afc63f4fd07c69369..6a325ff8f8c7e8f13919ff2f7d7d80a93d7d2be9 100644
--- a/pkg/compiler/lib/src/js_emitter/lazy_emitter/emitter.dart
+++ b/pkg/compiler/lib/src/js_emitter/lazy_emitter/emitter.dart
@@ -9,28 +9,30 @@ import 'package:js_runtime/shared/embedded_names.dart' show
METADATA,
TYPES;
-import '../program_builder/program_builder.dart' show ProgramBuilder;
-import '../model.dart';
-import 'model_emitter.dart';
import '../../common.dart';
-import '../../elements/elements.dart' show FieldElement;
+import '../../compiler.dart' show
+ Compiler;
+import '../../constants/values.dart' show
+ ConstantValue;
+import '../../elements/elements.dart' show
+ ClassElement,
+ Element,
+ FieldElement,
+ FunctionElement;
import '../../js/js.dart' as js;
-
import '../../js_backend/js_backend.dart' show
JavaScriptBackend,
Namer;
import '../js_emitter.dart' show
NativeEmitter;
-
import '../js_emitter.dart' as emitterTask show
Emitter;
+import '../model.dart';
+import '../program_builder/program_builder.dart' show
+ ProgramBuilder;
-import '../../diagnostics/diagnostic_listener.dart' show
- DiagnosticReporter;
-
-import '../../diagnostics/spannable.dart' show
- NO_LOCATION_SPANNABLE;
+import 'model_emitter.dart';
class Emitter implements emitterTask.Emitter {
final Compiler _compiler;
« no previous file with comments | « pkg/compiler/lib/src/js_emitter/js_emitter.dart ('k') | pkg/compiler/lib/src/js_emitter/model.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698