| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 import '../js_emitter/js_emitter.dart' show | 75 import '../js_emitter/js_emitter.dart' show |
| 76 CodeEmitterTask, | 76 CodeEmitterTask, |
| 77 Emitter, | 77 Emitter, |
| 78 MetadataCollector, | 78 MetadataCollector, |
| 79 Placeholder, | 79 Placeholder, |
| 80 USE_LAZY_EMITTER; | 80 USE_LAZY_EMITTER; |
| 81 import '../library_loader.dart' show LibraryLoader, LoadedLibraries; | 81 import '../library_loader.dart' show LibraryLoader, LoadedLibraries; |
| 82 import '../native/native.dart' as native; | 82 import '../native/native.dart' as native; |
| 83 import '../resolution/tree_elements.dart' show | 83 import '../resolution/tree_elements.dart' show |
| 84 TreeElements; | 84 TreeElements; |
| 85 import '../ssa/ssa.dart'; | 85 import '../ssa/builder.dart' show |
| 86 SsaFunctionCompiler; |
| 87 import '../ssa/nodes.dart' show |
| 88 HTypeConversion, |
| 89 HInstruction; |
| 90 import '../ssa/codegen.dart' show |
| 91 SsaCodeGenerator; |
| 86 import '../tree/tree.dart'; | 92 import '../tree/tree.dart'; |
| 87 import '../types/types.dart'; | 93 import '../types/types.dart'; |
| 88 import '../universe/call_structure.dart' show | 94 import '../universe/call_structure.dart' show |
| 89 CallStructure; | 95 CallStructure; |
| 90 import '../universe/selector.dart' show | 96 import '../universe/selector.dart' show |
| 91 Selector, | 97 Selector, |
| 92 SelectorKind; | 98 SelectorKind; |
| 93 import '../universe/universe.dart'; | 99 import '../universe/universe.dart'; |
| 94 import '../universe/use.dart' show | 100 import '../universe/use.dart' show |
| 95 DynamicUse, | 101 DynamicUse, |
| (...skipping 26 matching lines...) Expand all Loading... |
| 122 part 'constant_handler_javascript.dart'; | 128 part 'constant_handler_javascript.dart'; |
| 123 part 'custom_elements_analysis.dart'; | 129 part 'custom_elements_analysis.dart'; |
| 124 part 'frequency_namer.dart'; | 130 part 'frequency_namer.dart'; |
| 125 part 'field_naming_mixin.dart'; | 131 part 'field_naming_mixin.dart'; |
| 126 part 'minify_namer.dart'; | 132 part 'minify_namer.dart'; |
| 127 part 'namer.dart'; | 133 part 'namer.dart'; |
| 128 part 'namer_names.dart'; | 134 part 'namer_names.dart'; |
| 129 part 'no_such_method_registry.dart'; | 135 part 'no_such_method_registry.dart'; |
| 130 part 'runtime_types.dart'; | 136 part 'runtime_types.dart'; |
| 131 part 'type_variable_handler.dart'; | 137 part 'type_variable_handler.dart'; |
| OLD | NEW |