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:collection' show Queue; | 7 import 'dart:collection' show Queue; |
8 | 8 |
9 import '../common.dart'; | 9 import '../common.dart'; |
10 | 10 |
11 import '../js/js.dart' as jsAst; | 11 import '../js/js.dart' as jsAst; |
12 | 12 |
13 import '../closure.dart' show | 13 import '../closure.dart' show |
14 ClosureClassElement, | 14 ClosureClassElement, |
15 ClosureClassMap, | 15 ClosureClassMap, |
16 ClosureFieldElement; | 16 ClosureFieldElement; |
17 | 17 |
18 import '../dart2jslib.dart' show | 18 import '../dart2jslib.dart' show |
19 CodeBuffer; | 19 CodeBuffer; |
20 | 20 |
21 import '../dart_types.dart' show | |
22 GenericType; | |
Johnni Winther
2013/12/03 10:33:16
Remove together with previously mentioned `type` v
ahe
2013/12/05 14:24:23
Done.
| |
23 | |
24 import '../elements/elements.dart' show | |
25 TypeVariableElement; | |
26 | |
21 import '../elements/modelx.dart' show | 27 import '../elements/modelx.dart' show |
22 FunctionElementX; | 28 FunctionElementX; |
23 | 29 |
24 import '../js/js.dart' show | 30 import '../js/js.dart' show |
25 js; | 31 js; |
26 | 32 |
27 import '../js_backend/js_backend.dart' show | 33 import '../js_backend/js_backend.dart' show |
28 CheckedModeHelper, | 34 CheckedModeHelper, |
29 CheckedModeHelper, | 35 CheckedModeHelper, |
30 ConstantEmitter, | 36 ConstantEmitter, |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
64 part 'code_emitter_helper.dart'; | 70 part 'code_emitter_helper.dart'; |
65 part 'code_emitter_task.dart'; | 71 part 'code_emitter_task.dart'; |
66 part 'container_builder.dart'; | 72 part 'container_builder.dart'; |
67 part 'declarations.dart'; | 73 part 'declarations.dart'; |
68 part 'helpers.dart'; | 74 part 'helpers.dart'; |
69 part 'interceptor_emitter.dart'; | 75 part 'interceptor_emitter.dart'; |
70 part 'metadata_emitter.dart'; | 76 part 'metadata_emitter.dart'; |
71 part 'nsm_emitter.dart'; | 77 part 'nsm_emitter.dart'; |
72 part 'reflection_data_parser.dart'; | 78 part 'reflection_data_parser.dart'; |
73 part 'type_test_emitter.dart'; | 79 part 'type_test_emitter.dart'; |
OLD | NEW |