| 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; |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 import '../ssa/ssa.dart'; | 79 import '../ssa/ssa.dart'; |
| 80 import '../tree/tree.dart'; | 80 import '../tree/tree.dart'; |
| 81 import '../types/types.dart'; | 81 import '../types/types.dart'; |
| 82 import '../universe/call_structure.dart' show | 82 import '../universe/call_structure.dart' show |
| 83 CallStructure; | 83 CallStructure; |
| 84 import '../universe/selector.dart' show | 84 import '../universe/selector.dart' show |
| 85 Selector, | 85 Selector, |
| 86 SelectorKind; | 86 SelectorKind; |
| 87 import '../universe/universe.dart'; | 87 import '../universe/universe.dart'; |
| 88 import '../universe/use.dart' show | 88 import '../universe/use.dart' show |
| 89 DynamicUse, |
| 89 StaticUse; | 90 StaticUse; |
| 90 import '../universe/world_impact.dart' show | 91 import '../universe/world_impact.dart' show |
| 91 TransformedWorldImpact, | 92 TransformedWorldImpact, |
| 92 WorldImpact; | 93 WorldImpact; |
| 93 import '../util/characters.dart'; | 94 import '../util/characters.dart'; |
| 94 import '../util/util.dart'; | 95 import '../util/util.dart'; |
| 95 import '../world.dart' show | 96 import '../world.dart' show |
| 96 ClassWorld; | 97 ClassWorld; |
| 97 | 98 |
| 98 import 'backend_helpers.dart'; | 99 import 'backend_helpers.dart'; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 109 part 'constant_handler_javascript.dart'; | 110 part 'constant_handler_javascript.dart'; |
| 110 part 'custom_elements_analysis.dart'; | 111 part 'custom_elements_analysis.dart'; |
| 111 part 'frequency_namer.dart'; | 112 part 'frequency_namer.dart'; |
| 112 part 'field_naming_mixin.dart'; | 113 part 'field_naming_mixin.dart'; |
| 113 part 'minify_namer.dart'; | 114 part 'minify_namer.dart'; |
| 114 part 'namer.dart'; | 115 part 'namer.dart'; |
| 115 part 'namer_names.dart'; | 116 part 'namer_names.dart'; |
| 116 part 'no_such_method_registry.dart'; | 117 part 'no_such_method_registry.dart'; |
| 117 part 'runtime_types.dart'; | 118 part 'runtime_types.dart'; |
| 118 part 'type_variable_handler.dart'; | 119 part 'type_variable_handler.dart'; |
| OLD | NEW |