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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 import '../types/types.dart'; | 81 import '../types/types.dart'; |
82 import '../universe/universe.dart'; | 82 import '../universe/universe.dart'; |
83 import '../util/characters.dart'; | 83 import '../util/characters.dart'; |
84 import '../util/util.dart'; | 84 import '../util/util.dart'; |
85 import '../world.dart' show | 85 import '../world.dart' show |
86 ClassWorld; | 86 ClassWorld; |
87 | 87 |
88 import 'codegen/task.dart'; | 88 import 'codegen/task.dart'; |
89 import 'constant_system_javascript.dart'; | 89 import 'constant_system_javascript.dart'; |
90 import 'patch_resolver.dart'; | 90 import 'patch_resolver.dart'; |
| 91 import 'lookup_map_analysis.dart' show LookupMapAnalysis; |
91 | 92 |
92 part 'backend.dart'; | 93 part 'backend.dart'; |
93 part 'checked_mode_helpers.dart'; | 94 part 'checked_mode_helpers.dart'; |
94 part 'constant_emitter.dart'; | 95 part 'constant_emitter.dart'; |
95 part 'constant_handler_javascript.dart'; | 96 part 'constant_handler_javascript.dart'; |
96 part 'custom_elements_analysis.dart'; | 97 part 'custom_elements_analysis.dart'; |
97 part 'frequency_namer.dart'; | 98 part 'frequency_namer.dart'; |
98 part 'field_naming_mixin.dart'; | 99 part 'field_naming_mixin.dart'; |
99 part 'minify_namer.dart'; | 100 part 'minify_namer.dart'; |
100 part 'namer.dart'; | 101 part 'namer.dart'; |
101 part 'namer_names.dart'; | 102 part 'namer_names.dart'; |
102 part 'no_such_method_registry.dart'; | 103 part 'no_such_method_registry.dart'; |
103 part 'runtime_types.dart'; | 104 part 'runtime_types.dart'; |
104 part 'type_variable_handler.dart'; | 105 part 'type_variable_handler.dart'; |
OLD | NEW |