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

Unified Diff: pkg/compiler/lib/src/js_emitter/class_stub_generator.dart

Issue 2641813006: Change js_emitter parts into libraries (Closed)
Patch Set: Created 3 years, 11 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/class_stub_generator.dart
diff --git a/pkg/compiler/lib/src/js_emitter/class_stub_generator.dart b/pkg/compiler/lib/src/js_emitter/class_stub_generator.dart
index ae0ca07ab455cb009791524d83ede3a40939af7a..f932f48a6e3c27c5e890c1b4a53f2c89a66a098c 100644
--- a/pkg/compiler/lib/src/js_emitter/class_stub_generator.dart
+++ b/pkg/compiler/lib/src/js_emitter/class_stub_generator.dart
@@ -2,7 +2,27 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-part of dart2js.js_emitter;
+library dart2js.js_emitter.class_stub_generator;
+
+import '../common.dart';
+import '../common/names.dart' show Identifiers;
+import '../compiler.dart' show Compiler;
+import '../elements/elements.dart'
+ show
+ ClassElement,
Siggi Cherem (dart-lang) 2017/01/19 16:41:41 indentation seems odd here, missing darftmt? (same
Siggi Cherem (dart-lang) 2017/01/19 16:45:17 I see that you are fixing this in a subsequent CL,
+ Element;
+import '../js/js.dart' as jsAst;
+import '../js/js.dart' show js;
+import '../js_backend/js_backend.dart'
+ show
+ JavaScriptBackend,
+ Namer;
+import '../universe/selector.dart' show Selector;
+import '../universe/world_builder.dart'
+ show CodegenWorldBuilder, SelectorConstraints;
+import '../world.dart' show ClosedWorld;
+
+import 'model.dart';
class ClassStubGenerator {
final Namer namer;
« no previous file with comments | « no previous file | pkg/compiler/lib/src/js_emitter/code_emitter_task.dart » ('j') | pkg/compiler/lib/src/js_emitter/js_emitter.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698