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 'dart:math' show max; | 8 import 'dart:math' show max; |
9 import '../elements/elements.dart'; | 9 import '../elements/elements.dart'; |
10 import '../dart2jslib.dart'; | 10 import '../dart2jslib.dart'; |
(...skipping 20 matching lines...) Expand all Loading... |
31 Keyword, | 31 Keyword, |
32 OPEN_PAREN_INFO, | 32 OPEN_PAREN_INFO, |
33 CLOSE_PAREN_INFO, | 33 CLOSE_PAREN_INFO, |
34 SEMICOLON_INFO, | 34 SEMICOLON_INFO, |
35 IDENTIFIER_INFO; | 35 IDENTIFIER_INFO; |
36 | 36 |
37 part 'backend.dart'; | 37 part 'backend.dart'; |
38 part 'renamer.dart'; | 38 part 'renamer.dart'; |
39 part 'placeholder_collector.dart'; | 39 part 'placeholder_collector.dart'; |
40 part 'outputter.dart'; | 40 part 'outputter.dart'; |
OLD | NEW |