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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 DynamicUse, |
90 StaticUse; | 90 StaticUse, |
| 91 TypeUse, |
| 92 TypeUseKind; |
91 import '../universe/world_impact.dart' show | 93 import '../universe/world_impact.dart' show |
92 TransformedWorldImpact, | 94 TransformedWorldImpact, |
93 WorldImpact; | 95 WorldImpact; |
94 import '../util/characters.dart'; | 96 import '../util/characters.dart'; |
95 import '../util/util.dart'; | 97 import '../util/util.dart'; |
96 import '../world.dart' show | 98 import '../world.dart' show |
97 ClassWorld; | 99 ClassWorld; |
98 | 100 |
99 import 'backend_helpers.dart'; | 101 import 'backend_helpers.dart'; |
100 import 'backend_impact.dart'; | 102 import 'backend_impact.dart'; |
101 import 'codegen/task.dart'; | 103 import 'codegen/task.dart'; |
102 import 'constant_system_javascript.dart'; | 104 import 'constant_system_javascript.dart'; |
103 import 'patch_resolver.dart'; | 105 import 'patch_resolver.dart'; |
104 import 'js_interop_analysis.dart' show JsInteropAnalysis; | 106 import 'js_interop_analysis.dart' show JsInteropAnalysis; |
105 import 'lookup_map_analysis.dart' show LookupMapAnalysis; | 107 import 'lookup_map_analysis.dart' show LookupMapAnalysis; |
106 | 108 |
107 part 'backend.dart'; | 109 part 'backend.dart'; |
108 part 'checked_mode_helpers.dart'; | 110 part 'checked_mode_helpers.dart'; |
109 part 'constant_emitter.dart'; | 111 part 'constant_emitter.dart'; |
110 part 'constant_handler_javascript.dart'; | 112 part 'constant_handler_javascript.dart'; |
111 part 'custom_elements_analysis.dart'; | 113 part 'custom_elements_analysis.dart'; |
112 part 'frequency_namer.dart'; | 114 part 'frequency_namer.dart'; |
113 part 'field_naming_mixin.dart'; | 115 part 'field_naming_mixin.dart'; |
114 part 'minify_namer.dart'; | 116 part 'minify_namer.dart'; |
115 part 'namer.dart'; | 117 part 'namer.dart'; |
116 part 'namer_names.dart'; | 118 part 'namer_names.dart'; |
117 part 'no_such_method_registry.dart'; | 119 part 'no_such_method_registry.dart'; |
118 part 'runtime_types.dart'; | 120 part 'runtime_types.dart'; |
119 part 'type_variable_handler.dart'; | 121 part 'type_variable_handler.dart'; |
OLD | NEW |