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 '../js/js.dart' as jsAst; | 9 import '../js/js.dart' as jsAst; |
10 | 10 |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 | 62 |
63 import '../util/uri_extras.dart' show | 63 import '../util/uri_extras.dart' show |
64 relativize; | 64 relativize; |
65 | 65 |
66 import '../util/util.dart' show | 66 import '../util/util.dart' show |
67 equalElements; | 67 equalElements; |
68 | 68 |
69 import '../deferred_load.dart' show | 69 import '../deferred_load.dart' show |
70 OutputUnit; | 70 OutputUnit; |
71 | 71 |
| 72 import '../runtime_data.dart' as encoding; |
| 73 |
72 part 'class_builder.dart'; | 74 part 'class_builder.dart'; |
73 part 'class_emitter.dart'; | 75 part 'class_emitter.dart'; |
74 part 'code_emitter_helper.dart'; | 76 part 'code_emitter_helper.dart'; |
75 part 'code_emitter_task.dart'; | 77 part 'code_emitter_task.dart'; |
76 part 'container_builder.dart'; | 78 part 'container_builder.dart'; |
77 part 'declarations.dart'; | 79 part 'declarations.dart'; |
78 part 'helpers.dart'; | 80 part 'helpers.dart'; |
79 part 'interceptor_emitter.dart'; | 81 part 'interceptor_emitter.dart'; |
80 part 'metadata_emitter.dart'; | 82 part 'metadata_emitter.dart'; |
81 part 'nsm_emitter.dart'; | 83 part 'nsm_emitter.dart'; |
82 part 'reflection_data_parser.dart'; | 84 part 'reflection_data_parser.dart'; |
83 part 'type_test_emitter.dart'; | 85 part 'type_test_emitter.dart'; |
OLD | NEW |