| 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 | 8 |
| 9 import '../common.dart'; | 9 import '../common.dart'; |
| 10 | 10 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 TypedefType; | 21 TypedefType; |
| 22 | 22 |
| 23 import '../io/code_output.dart'; | 23 import '../io/code_output.dart'; |
| 24 | 24 |
| 25 import '../elements/elements.dart' show | 25 import '../elements/elements.dart' show |
| 26 ConstructorBodyElement, | 26 ConstructorBodyElement, |
| 27 ElementKind, | 27 ElementKind, |
| 28 FieldElement, | 28 FieldElement, |
| 29 ParameterElement, | 29 ParameterElement, |
| 30 TypeVariableElement, | 30 TypeVariableElement, |
| 31 MethodElement; | 31 MethodElement, |
| 32 MemberElement; |
| 32 | 33 |
| 33 import '../hash/sha1.dart' show Hasher; | 34 import '../hash/sha1.dart' show Hasher; |
| 34 | 35 |
| 35 import '../helpers/helpers.dart'; // Included for debug helpers. | 36 import '../helpers/helpers.dart'; // Included for debug helpers. |
| 36 | 37 |
| 37 import '../js/js.dart' as jsAst; | 38 import '../js/js.dart' as jsAst; |
| 38 import '../js/js.dart' show | 39 import '../js/js.dart' show |
| 39 js; | 40 js; |
| 40 | 41 |
| 41 import '../js_backend/js_backend.dart' show | 42 import '../js_backend/js_backend.dart' show |
| (...skipping 63 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 |