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 tree; | 5 library tree; |
6 | 6 |
7 import 'dart:collection'; | 7 import 'dart:collection'; |
8 | 8 |
9 import '../diagnostics/spannable.dart' show | 9 import '../diagnostics/spannable.dart' show |
10 Spannable, | 10 Spannable, |
11 SpannableAssertionFailure; | 11 SpannableAssertionFailure; |
12 import '../scanner/scannerlib.dart'; | 12 import '../scanner/token.dart' show |
| 13 BeginGroupToken, |
| 14 FUNCTION_INFO, |
| 15 IDENTIFIER_TOKEN, |
| 16 KEYWORD_TOKEN, |
| 17 PLUS_TOKEN, |
| 18 Token; |
13 import '../util/util.dart'; | 19 import '../util/util.dart'; |
14 import '../util/characters.dart'; | 20 import '../util/characters.dart'; |
15 | 21 |
16 import '../resolution/secret_tree_element.dart' | 22 import '../resolution/secret_tree_element.dart' |
17 show StoredTreeElementMixin, NullTreeElementMixin; | 23 show StoredTreeElementMixin, NullTreeElementMixin; |
18 | 24 |
19 import '../elements/elements.dart' show MetadataAnnotation; | 25 import '../elements/elements.dart' show MetadataAnnotation; |
20 | 26 |
21 part 'dartstring.dart'; | 27 part 'dartstring.dart'; |
22 part 'nodes.dart'; | 28 part 'nodes.dart'; |
23 part 'prettyprint.dart'; | 29 part 'prettyprint.dart'; |
24 part 'unparser.dart'; | 30 part 'unparser.dart'; |
OLD | NEW |