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 LinkedHashMap; |
8 | 9 |
9 import '../common.dart'; | 10 import '../common.dart'; |
10 | 11 |
11 import '../constants/expressions.dart'; | 12 import '../constants/expressions.dart'; |
12 import '../constants/values.dart'; | 13 import '../constants/values.dart'; |
13 | 14 |
14 import '../closure.dart' show | 15 import '../closure.dart' show |
15 ClosureClassElement, | 16 ClosureClassElement, |
16 ClosureClassMap, | 17 ClosureClassMap, |
17 ClosureFieldElement, | 18 ClosureFieldElement, |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 | 106 |
106 part 'old_emitter/class_builder.dart'; | 107 part 'old_emitter/class_builder.dart'; |
107 part 'old_emitter/class_emitter.dart'; | 108 part 'old_emitter/class_emitter.dart'; |
108 part 'old_emitter/code_emitter_helper.dart'; | 109 part 'old_emitter/code_emitter_helper.dart'; |
109 part 'old_emitter/container_builder.dart'; | 110 part 'old_emitter/container_builder.dart'; |
110 part 'old_emitter/declarations.dart'; | 111 part 'old_emitter/declarations.dart'; |
111 part 'old_emitter/emitter.dart'; | 112 part 'old_emitter/emitter.dart'; |
112 part 'old_emitter/interceptor_emitter.dart'; | 113 part 'old_emitter/interceptor_emitter.dart'; |
113 part 'old_emitter/nsm_emitter.dart'; | 114 part 'old_emitter/nsm_emitter.dart'; |
114 part 'old_emitter/setup_program_builder.dart'; | 115 part 'old_emitter/setup_program_builder.dart'; |
OLD | NEW |