OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 dart2js.js_emitter; | 5 library dart2js.js_emitter; |
6 | 6 |
7 import 'dart:convert'; | 7 import 'dart:convert'; |
8 import 'dart:collection' show HashMap; | 8 import 'dart:collection' show HashMap; |
9 | 9 |
10 import '../common.dart'; | 10 import '../common.dart'; |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 | 86 |
87 import '../util/uri_extras.dart' show | 87 import '../util/uri_extras.dart' show |
88 relativize; | 88 relativize; |
89 | 89 |
90 import '../util/util.dart' show | 90 import '../util/util.dart' show |
91 equalElements; | 91 equalElements; |
92 | 92 |
93 import '../deferred_load.dart' show | 93 import '../deferred_load.dart' show |
94 OutputUnit; | 94 OutputUnit; |
95 | 95 |
96 import 'package:_internal/compiler/js_lib/shared/embedded_names.dart' | 96 import 'package:js_runtime/shared/embedded_names.dart' as embeddedNames; |
97 as embeddedNames; | 97 import 'package:js_runtime/shared/embedded_names.dart' show JsBuiltin; |
98 import 'package:_internal/compiler/js_lib/shared/embedded_names.dart' show | |
99 JsBuiltin; | |
100 | 98 |
101 import '../native/native.dart' as native; | 99 import '../native/native.dart' as native; |
102 part 'class_stub_generator.dart'; | 100 part 'class_stub_generator.dart'; |
103 part 'code_emitter_task.dart'; | 101 part 'code_emitter_task.dart'; |
104 part 'helpers.dart'; | 102 part 'helpers.dart'; |
105 part 'interceptor_stub_generator.dart'; | 103 part 'interceptor_stub_generator.dart'; |
106 part 'main_call_stub_generator.dart'; | 104 part 'main_call_stub_generator.dart'; |
107 part 'metadata_collector.dart'; | 105 part 'metadata_collector.dart'; |
108 part 'native_emitter.dart'; | 106 part 'native_emitter.dart'; |
109 part 'native_generator.dart'; | 107 part 'native_generator.dart'; |
110 part 'parameter_stub_generator.dart'; | 108 part 'parameter_stub_generator.dart'; |
111 part 'runtime_type_generator.dart'; | 109 part 'runtime_type_generator.dart'; |
112 part 'type_test_registry.dart'; | 110 part 'type_test_registry.dart'; |
113 | 111 |
114 part 'old_emitter/class_builder.dart'; | 112 part 'old_emitter/class_builder.dart'; |
115 part 'old_emitter/class_emitter.dart'; | 113 part 'old_emitter/class_emitter.dart'; |
116 part 'old_emitter/code_emitter_helper.dart'; | 114 part 'old_emitter/code_emitter_helper.dart'; |
117 part 'old_emitter/container_builder.dart'; | 115 part 'old_emitter/container_builder.dart'; |
118 part 'old_emitter/declarations.dart'; | 116 part 'old_emitter/declarations.dart'; |
119 part 'old_emitter/emitter.dart'; | 117 part 'old_emitter/emitter.dart'; |
120 part 'old_emitter/interceptor_emitter.dart'; | 118 part 'old_emitter/interceptor_emitter.dart'; |
121 part 'old_emitter/nsm_emitter.dart'; | 119 part 'old_emitter/nsm_emitter.dart'; |
122 part 'old_emitter/setup_program_builder.dart'; | 120 part 'old_emitter/setup_program_builder.dart'; |
OLD | NEW |