| 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 '../common/names.dart' show |
| 10 Identifiers; |
| 11 |
| 9 import '../constants/values.dart'; | 12 import '../constants/values.dart'; |
| 10 | 13 |
| 11 import '../closure.dart' show | 14 import '../closure.dart' show |
| 12 ClosureClassElement, | 15 ClosureClassElement, |
| 13 ClosureClassMap, | 16 ClosureClassMap, |
| 14 ClosureFieldElement, | 17 ClosureFieldElement, |
| 15 CapturedVariable; | 18 CapturedVariable; |
| 16 | 19 |
| 17 import '../dart_types.dart' show | 20 import '../dart_types.dart' show |
| 18 TypedefType; | 21 TypedefType; |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 part 'code_emitter_task.dart'; | 79 part 'code_emitter_task.dart'; |
| 77 part 'helpers.dart'; | 80 part 'helpers.dart'; |
| 78 part 'interceptor_stub_generator.dart'; | 81 part 'interceptor_stub_generator.dart'; |
| 79 part 'main_call_stub_generator.dart'; | 82 part 'main_call_stub_generator.dart'; |
| 80 part 'metadata_collector.dart'; | 83 part 'metadata_collector.dart'; |
| 81 part 'native_emitter.dart'; | 84 part 'native_emitter.dart'; |
| 82 part 'native_generator.dart'; | 85 part 'native_generator.dart'; |
| 83 part 'parameter_stub_generator.dart'; | 86 part 'parameter_stub_generator.dart'; |
| 84 part 'runtime_type_generator.dart'; | 87 part 'runtime_type_generator.dart'; |
| 85 part 'type_test_registry.dart'; | 88 part 'type_test_registry.dart'; |
| OLD | NEW |