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