| 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/backend_api.dart' show | 14 import '../common/backend_api.dart' show |
| 15 Backend; | 15 Backend, |
| 16 ForeignResolver; |
| 16 import '../common/codegen.dart' show | 17 import '../common/codegen.dart' show |
| 17 CodegenRegistry, | 18 CodegenRegistry, |
| 18 CodegenWorkItem; | 19 CodegenWorkItem; |
| 19 import '../common/names.dart' show | 20 import '../common/names.dart' show |
| 20 Identifiers, | 21 Identifiers, |
| 21 Selectors, | 22 Selectors, |
| 22 Uris; | 23 Uris; |
| 23 import '../common/registry.dart' show | 24 import '../common/registry.dart' show |
| 24 Registry; | 25 Registry; |
| 25 import '../common/tasks.dart' show | 26 import '../common/tasks.dart' show |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 part 'constant_handler_javascript.dart'; | 102 part 'constant_handler_javascript.dart'; |
| 102 part 'custom_elements_analysis.dart'; | 103 part 'custom_elements_analysis.dart'; |
| 103 part 'frequency_namer.dart'; | 104 part 'frequency_namer.dart'; |
| 104 part 'field_naming_mixin.dart'; | 105 part 'field_naming_mixin.dart'; |
| 105 part 'minify_namer.dart'; | 106 part 'minify_namer.dart'; |
| 106 part 'namer.dart'; | 107 part 'namer.dart'; |
| 107 part 'namer_names.dart'; | 108 part 'namer_names.dart'; |
| 108 part 'no_such_method_registry.dart'; | 109 part 'no_such_method_registry.dart'; |
| 109 part 'runtime_types.dart'; | 110 part 'runtime_types.dart'; |
| 110 part 'type_variable_handler.dart'; | 111 part 'type_variable_handler.dart'; |
| OLD | NEW |