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