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 | 9 import '../common/names.dart' show |
10 Identifiers; | 10 Identifiers; |
11 | 11 |
12 import '../constants/values.dart'; | 12 import '../constants/values.dart'; |
13 | 13 |
14 import '../closure.dart' show | 14 import '../closure.dart' show |
15 ClosureClassElement, | 15 ClosureClassElement, |
16 ClosureClassMap, | 16 ClosureClassMap, |
17 ClosureFieldElement, | 17 ClosureFieldElement, |
18 CapturedVariable; | 18 CapturedVariable; |
19 | 19 |
20 import '../dart_types.dart' show | 20 import '../dart_types.dart' show |
21 TypedefType; | 21 TypedefType; |
22 | 22 |
| 23 import '../diagnostics/diagnostic_listener.dart' show |
| 24 DiagnosticReporter; |
| 25 |
23 import '../diagnostics/spannable.dart' show | 26 import '../diagnostics/spannable.dart' show |
24 NO_LOCATION_SPANNABLE; | 27 NO_LOCATION_SPANNABLE; |
25 | 28 |
26 import '../elements/elements.dart' show | 29 import '../elements/elements.dart' show |
27 ConstructorBodyElement, | 30 ConstructorBodyElement, |
28 ElementKind, | 31 ElementKind, |
29 FieldElement, | 32 FieldElement, |
30 ParameterElement, | 33 ParameterElement, |
31 TypeVariableElement, | 34 TypeVariableElement, |
32 MethodElement, | 35 MethodElement, |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 part 'code_emitter_task.dart'; | 81 part 'code_emitter_task.dart'; |
79 part 'helpers.dart'; | 82 part 'helpers.dart'; |
80 part 'interceptor_stub_generator.dart'; | 83 part 'interceptor_stub_generator.dart'; |
81 part 'main_call_stub_generator.dart'; | 84 part 'main_call_stub_generator.dart'; |
82 part 'metadata_collector.dart'; | 85 part 'metadata_collector.dart'; |
83 part 'native_emitter.dart'; | 86 part 'native_emitter.dart'; |
84 part 'native_generator.dart'; | 87 part 'native_generator.dart'; |
85 part 'parameter_stub_generator.dart'; | 88 part 'parameter_stub_generator.dart'; |
86 part 'runtime_type_generator.dart'; | 89 part 'runtime_type_generator.dart'; |
87 part 'type_test_registry.dart'; | 90 part 'type_test_registry.dart'; |
OLD | NEW |