| 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 '../common.dart'; | 7 import '../common.dart'; |
| 8 | 8 |
| 9 import '../constants/expressions.dart'; | 9 import '../constants/expressions.dart'; |
| 10 import '../constants/values.dart'; | 10 import '../constants/values.dart'; |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 | 76 |
| 77 import '../util/uri_extras.dart' show | 77 import '../util/uri_extras.dart' show |
| 78 relativize; | 78 relativize; |
| 79 | 79 |
| 80 import '../util/util.dart' show | 80 import '../util/util.dart' show |
| 81 equalElements; | 81 equalElements; |
| 82 | 82 |
| 83 import '../deferred_load.dart' show | 83 import '../deferred_load.dart' show |
| 84 OutputUnit; | 84 OutputUnit; |
| 85 | 85 |
| 86 import 'package:_internal/compiler/js_lib/shared/runtime_data.dart' as encoding; | |
| 87 import 'package:_internal/compiler/js_lib/shared/embedded_names.dart' | 86 import 'package:_internal/compiler/js_lib/shared/embedded_names.dart' |
| 88 as embeddedNames; | 87 as embeddedNames; |
| 89 | 88 |
| 90 import '../hash/sha1.dart'; | 89 import '../hash/sha1.dart'; |
| 91 | 90 |
| 92 part 'class_stub_generator.dart'; | 91 part 'class_stub_generator.dart'; |
| 93 part 'code_emitter_task.dart'; | 92 part 'code_emitter_task.dart'; |
| 94 part 'helpers.dart'; | 93 part 'helpers.dart'; |
| 95 part 'interceptor_stub_generator.dart'; | 94 part 'interceptor_stub_generator.dart'; |
| 96 part 'type_test_generator.dart'; | 95 part 'type_test_generator.dart'; |
| 97 part 'type_test_registry.dart'; | 96 part 'type_test_registry.dart'; |
| 98 | 97 |
| 99 part 'old_emitter/class_builder.dart'; | 98 part 'old_emitter/class_builder.dart'; |
| 100 part 'old_emitter/class_emitter.dart'; | 99 part 'old_emitter/class_emitter.dart'; |
| 101 part 'old_emitter/code_emitter_helper.dart'; | 100 part 'old_emitter/code_emitter_helper.dart'; |
| 102 part 'old_emitter/container_builder.dart'; | 101 part 'old_emitter/container_builder.dart'; |
| 103 part 'old_emitter/declarations.dart'; | 102 part 'old_emitter/declarations.dart'; |
| 104 part 'old_emitter/emitter.dart'; | 103 part 'old_emitter/emitter.dart'; |
| 105 part 'old_emitter/interceptor_emitter.dart'; | 104 part 'old_emitter/interceptor_emitter.dart'; |
| 106 part 'old_emitter/metadata_emitter.dart'; | 105 part 'old_emitter/metadata_emitter.dart'; |
| 107 part 'old_emitter/nsm_emitter.dart'; | 106 part 'old_emitter/nsm_emitter.dart'; |
| 108 part 'old_emitter/reflection_data_parser.dart'; | 107 part 'old_emitter/reflection_data_parser.dart'; |
| 109 part 'old_emitter/type_test_emitter.dart'; | 108 part 'old_emitter/type_test_emitter.dart'; |
| OLD | NEW |