Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(225)

Side by Side Diff: pkg/compiler/lib/src/tree/tree.dart

Issue 1762723002: Cleanup 1: split parts into their own libraries, remove unused imports (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698