| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library js_backend; | 5 library js_backend; |
| 6 | 6 |
| 7 import 'dart:async' show EventSink, Future; | 7 import 'dart:async' show EventSink, Future; |
| 8 import 'dart:collection' show HashMap; | 8 import 'dart:collection' show HashMap; |
| 9 | 9 |
| 10 import 'package:js_runtime/shared/embedded_names.dart' as embeddedNames; | 10 import 'package:js_runtime/shared/embedded_names.dart' as embeddedNames; |
| 11 import 'package:js_runtime/shared/embedded_names.dart' show JsGetName; | 11 import 'package:js_runtime/shared/embedded_names.dart' show JsGetName; |
| 12 | 12 |
| 13 import '../closure.dart'; | 13 import '../closure.dart'; |
| 14 import '../common.dart'; | 14 import '../common.dart'; |
| 15 import '../common/backend_api.dart' show | 15 import '../common/backend_api.dart' show |
| 16 Backend, | 16 Backend, |
| 17 ImpactTransformer, | 17 ImpactTransformer, |
| 18 ForeignResolver; | 18 ForeignResolver; |
| 19 import '../common/codegen.dart' show | 19 import '../common/codegen.dart' show |
| 20 CodegenImpact, | 20 CodegenImpact, |
| 21 CodegenRegistry, | 21 CodegenRegistry, |
| 22 CodegenWorkItem; | 22 CodegenWorkItem; |
| 23 import '../common/names.dart' show | 23 import '../common/names.dart' show |
| 24 Identifiers, | 24 Identifiers, |
| 25 Names, |
| 25 Selectors, | 26 Selectors, |
| 26 Uris; | 27 Uris; |
| 27 import '../common/registry.dart' show | 28 import '../common/registry.dart' show |
| 28 EagerRegistry, | 29 EagerRegistry, |
| 29 Registry; | 30 Registry; |
| 30 import '../common/tasks.dart' show | 31 import '../common/tasks.dart' show |
| 31 CompilerTask; | 32 CompilerTask; |
| 32 import '../common/resolution.dart' show | 33 import '../common/resolution.dart' show |
| 33 Feature, | 34 Feature, |
| 34 ListLiteralUse, | 35 ListLiteralUse, |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 part 'constant_handler_javascript.dart'; | 123 part 'constant_handler_javascript.dart'; |
| 123 part 'custom_elements_analysis.dart'; | 124 part 'custom_elements_analysis.dart'; |
| 124 part 'frequency_namer.dart'; | 125 part 'frequency_namer.dart'; |
| 125 part 'field_naming_mixin.dart'; | 126 part 'field_naming_mixin.dart'; |
| 126 part 'minify_namer.dart'; | 127 part 'minify_namer.dart'; |
| 127 part 'namer.dart'; | 128 part 'namer.dart'; |
| 128 part 'namer_names.dart'; | 129 part 'namer_names.dart'; |
| 129 part 'no_such_method_registry.dart'; | 130 part 'no_such_method_registry.dart'; |
| 130 part 'runtime_types.dart'; | 131 part 'runtime_types.dart'; |
| 131 part 'type_variable_handler.dart'; | 132 part 'type_variable_handler.dart'; |
| OLD | NEW |