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