| 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 BackendSerialization, |
| 17 ImpactTransformer, | 18 ImpactTransformer, |
| 18 ForeignResolver; | 19 ForeignResolver; |
| 19 import '../common/codegen.dart' show | 20 import '../common/codegen.dart' show |
| 20 CodegenImpact, | 21 CodegenImpact, |
| 21 CodegenRegistry, | 22 CodegenRegistry, |
| 22 CodegenWorkItem; | 23 CodegenWorkItem; |
| 23 import '../common/names.dart' show | 24 import '../common/names.dart' show |
| 24 Identifiers, | 25 Identifiers, |
| 25 Names, | 26 Names, |
| 26 Selectors, | 27 Selectors, |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 TransformedWorldImpact, | 110 TransformedWorldImpact, |
| 110 WorldImpact, | 111 WorldImpact, |
| 111 WorldImpactVisitor; | 112 WorldImpactVisitor; |
| 112 import '../util/characters.dart'; | 113 import '../util/characters.dart'; |
| 113 import '../util/util.dart'; | 114 import '../util/util.dart'; |
| 114 import '../world.dart' show | 115 import '../world.dart' show |
| 115 ClassWorld; | 116 ClassWorld; |
| 116 | 117 |
| 117 import 'backend_helpers.dart'; | 118 import 'backend_helpers.dart'; |
| 118 import 'backend_impact.dart'; | 119 import 'backend_impact.dart'; |
| 120 import 'backend_serialization.dart' show |
| 121 JavaScriptBackendSerialization; |
| 119 import 'codegen/task.dart'; | 122 import 'codegen/task.dart'; |
| 120 import 'constant_system_javascript.dart'; | 123 import 'constant_system_javascript.dart'; |
| 121 import 'patch_resolver.dart'; | 124 import 'native_data.dart' show |
| 125 NativeData; |
| 122 import 'js_interop_analysis.dart' show JsInteropAnalysis; | 126 import 'js_interop_analysis.dart' show JsInteropAnalysis; |
| 123 import 'lookup_map_analysis.dart' show LookupMapAnalysis; | 127 import 'lookup_map_analysis.dart' show LookupMapAnalysis; |
| 128 import 'patch_resolver.dart'; |
| 124 | 129 |
| 125 part 'backend.dart'; | 130 part 'backend.dart'; |
| 126 part 'checked_mode_helpers.dart'; | 131 part 'checked_mode_helpers.dart'; |
| 127 part 'constant_emitter.dart'; | 132 part 'constant_emitter.dart'; |
| 128 part 'constant_handler_javascript.dart'; | 133 part 'constant_handler_javascript.dart'; |
| 129 part 'custom_elements_analysis.dart'; | 134 part 'custom_elements_analysis.dart'; |
| 130 part 'frequency_namer.dart'; | 135 part 'frequency_namer.dart'; |
| 131 part 'field_naming_mixin.dart'; | 136 part 'field_naming_mixin.dart'; |
| 132 part 'minify_namer.dart'; | 137 part 'minify_namer.dart'; |
| 133 part 'namer.dart'; | 138 part 'namer.dart'; |
| 134 part 'namer_names.dart'; | 139 part 'namer_names.dart'; |
| 135 part 'no_such_method_registry.dart'; | 140 part 'no_such_method_registry.dart'; |
| 136 part 'runtime_types.dart'; | 141 part 'runtime_types.dart'; |
| 137 part 'type_variable_handler.dart'; | 142 part 'type_variable_handler.dart'; |
| OLD | NEW |