| 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 |
| 11 import '../closure.dart' show | 11 import '../closure.dart' show |
| 12 ClosureClassElement, | 12 ClosureClassElement, |
| 13 ClosureClassMap, | 13 ClosureClassMap, |
| 14 ClosureFieldElement, | 14 ClosureFieldElement, |
| 15 CapturedVariable; | 15 CapturedVariable; |
| 16 | 16 |
| 17 import '../dart2jslib.dart' show | 17 import '../dart2jslib.dart' show |
| 18 CodeBuffer; | 18 CodeBuffer; |
| 19 | 19 |
| 20 import '../dart_types.dart' show |
| 21 TypedefType; |
| 22 |
| 20 import '../elements/elements.dart' show | 23 import '../elements/elements.dart' show |
| 21 TypeVariableElement, | |
| 22 ConstructorBodyElement, | 24 ConstructorBodyElement, |
| 23 ParameterElement; | 25 ParameterElement, |
| 26 TypeVariableElement; |
| 24 | 27 |
| 25 import '../js/js.dart' show | 28 import '../js/js.dart' show |
| 26 js, templateManager; | 29 js, templateManager; |
| 27 | 30 |
| 28 import '../js_backend/js_backend.dart' show | 31 import '../js_backend/js_backend.dart' show |
| 29 CheckedModeHelper, | 32 CheckedModeHelper, |
| 30 ConstantEmitter, | 33 ConstantEmitter, |
| 31 CustomElementsAnalysis, | 34 CustomElementsAnalysis, |
| 32 JavaScriptBackend, | 35 JavaScriptBackend, |
| 33 JavaScriptConstantCompiler, | 36 JavaScriptConstantCompiler, |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 part 'code_emitter_helper.dart'; | 79 part 'code_emitter_helper.dart'; |
| 77 part 'code_emitter_task.dart'; | 80 part 'code_emitter_task.dart'; |
| 78 part 'container_builder.dart'; | 81 part 'container_builder.dart'; |
| 79 part 'declarations.dart'; | 82 part 'declarations.dart'; |
| 80 part 'helpers.dart'; | 83 part 'helpers.dart'; |
| 81 part 'interceptor_emitter.dart'; | 84 part 'interceptor_emitter.dart'; |
| 82 part 'metadata_emitter.dart'; | 85 part 'metadata_emitter.dart'; |
| 83 part 'nsm_emitter.dart'; | 86 part 'nsm_emitter.dart'; |
| 84 part 'reflection_data_parser.dart'; | 87 part 'reflection_data_parser.dart'; |
| 85 part 'type_test_emitter.dart'; | 88 part 'type_test_emitter.dart'; |
| OLD | NEW |