Chromium Code Reviews| 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; |