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/token.dart' show | 12 import '../tokens/token.dart' show |
13 BeginGroupToken, | 13 BeginGroupToken, |
14 FUNCTION_INFO, | 14 FUNCTION_INFO, |
15 IDENTIFIER_TOKEN, | 15 IDENTIFIER_TOKEN, |
16 KEYWORD_TOKEN, | 16 KEYWORD_TOKEN, |
17 PLUS_TOKEN, | 17 PLUS_TOKEN, |
18 Token; | 18 Token; |
19 import '../util/util.dart'; | 19 import '../util/util.dart'; |
20 import '../util/characters.dart'; | 20 import '../util/characters.dart'; |
21 | 21 |
22 import '../resolution/secret_tree_element.dart' | 22 import '../resolution/secret_tree_element.dart' |
23 show StoredTreeElementMixin, NullTreeElementMixin; | 23 show StoredTreeElementMixin, NullTreeElementMixin; |
24 | 24 |
25 import '../elements/elements.dart' show MetadataAnnotation; | 25 import '../elements/elements.dart' show MetadataAnnotation; |
26 | 26 |
27 part 'dartstring.dart'; | 27 part 'dartstring.dart'; |
28 part 'nodes.dart'; | 28 part 'nodes.dart'; |
29 part 'prettyprint.dart'; | 29 part 'prettyprint.dart'; |
30 part 'unparser.dart'; | 30 part 'unparser.dart'; |
OLD | NEW |