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