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

Unified Diff: pkg/compiler/lib/src/js_emitter/startup_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
Index: pkg/compiler/lib/src/js_emitter/startup_emitter/emitter.dart
diff --git a/pkg/compiler/lib/src/js_emitter/startup_emitter/emitter.dart b/pkg/compiler/lib/src/js_emitter/startup_emitter/emitter.dart
index 457cd6b5212ade3895f67882ff9323f071c0c4e7..7f8e8453794536626c0578ac5a198538fc577ea6 100644
--- a/pkg/compiler/lib/src/js_emitter/startup_emitter/emitter.dart
+++ b/pkg/compiler/lib/src/js_emitter/startup_emitter/emitter.dart
@@ -10,28 +10,29 @@ import 'package:js_runtime/shared/embedded_names.dart' show
STATIC_FUNCTION_NAME_TO_CLOSURE,
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 '../program_builder/program_builder.dart' show ProgramBuilder;
+import '../model.dart';
-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;

Powered by Google App Engine
This is Rietveld 408576698