OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 dart_backend; | 5 library dart_backend; |
6 | 6 |
| 7 import 'dart:async' show Future; |
7 import '../elements/elements.dart'; | 8 import '../elements/elements.dart'; |
8 import '../elements/modelx.dart' show SynthesizedConstructorElementX; | 9 import '../elements/modelx.dart' show SynthesizedConstructorElementX; |
9 import '../dart2jslib.dart'; | 10 import '../dart2jslib.dart'; |
10 import '../dart_types.dart'; | 11 import '../dart_types.dart'; |
11 import '../tree/tree.dart'; | 12 import '../tree/tree.dart'; |
12 import '../util/util.dart'; | 13 import '../util/util.dart'; |
13 import '../mirror_renamer/mirror_renamer.dart'; | 14 import '../mirror_renamer/mirror_renamer.dart'; |
14 | 15 |
15 import '../scanner/scannerlib.dart' show StringToken, | 16 import '../scanner/scannerlib.dart' show StringToken, |
16 Keyword, | 17 Keyword, |
17 OPEN_PAREN_INFO, | 18 OPEN_PAREN_INFO, |
18 CLOSE_PAREN_INFO, | 19 CLOSE_PAREN_INFO, |
19 SEMICOLON_INFO, | 20 SEMICOLON_INFO, |
20 IDENTIFIER_INFO; | 21 IDENTIFIER_INFO; |
21 | 22 |
22 part 'backend.dart'; | 23 part 'backend.dart'; |
23 part 'emitter.dart'; | 24 part 'emitter.dart'; |
24 part 'renamer.dart'; | 25 part 'renamer.dart'; |
25 part 'placeholder_collector.dart'; | 26 part 'placeholder_collector.dart'; |
26 part 'utils.dart'; | 27 part 'utils.dart'; |
OLD | NEW |