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 'dart:async' show Future; |
8 import '../elements/elements.dart'; | 8 import '../elements/elements.dart'; |
9 import '../elements/modelx.dart' show SynthesizedConstructorElementX; | 9 import '../elements/modelx.dart' show SynthesizedConstructorElementX; |
10 import '../dart2jslib.dart'; | 10 import '../dart2jslib.dart'; |
11 import '../dart_types.dart'; | 11 import '../dart_types.dart'; |
12 import '../tree/tree.dart'; | 12 import '../tree/tree.dart'; |
13 import '../util/util.dart'; | 13 import '../util/util.dart'; |
14 import '../mirror_renamer/mirror_renamer.dart'; | 14 import '../mirror_renamer/mirror_renamer.dart'; |
15 | 15 |
16 import '../scanner/scannerlib.dart' show StringToken, | 16 import '../scanner/scannerlib.dart' show StringToken, |
17 Keyword, | 17 Keyword, |
18 OPEN_PAREN_INFO, | 18 OPEN_PAREN_INFO, |
19 CLOSE_PAREN_INFO, | 19 CLOSE_PAREN_INFO, |
20 SEMICOLON_INFO, | 20 SEMICOLON_INFO, |
21 IDENTIFIER_INFO; | 21 IDENTIFIER_INFO; |
22 | 22 |
23 part 'backend.dart'; | 23 part 'backend.dart'; |
24 part 'emitter.dart'; | 24 part 'emitter.dart'; |
25 part 'renamer.dart'; | 25 part 'renamer.dart'; |
26 part 'placeholder_collector.dart'; | 26 part 'placeholder_collector.dart'; |
27 part 'utils.dart'; | |
OLD | NEW |