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 dart2js; | 5 library dart2js; |
6 | 6 |
7 import 'dart:async'; | 7 import 'dart:async'; |
8 import 'dart:collection' show Queue; | 8 import 'dart:collection' show Queue; |
9 import 'dart:profiler' show | 9 import 'dart:profiler' show |
10 UserTag; | 10 UserTag; |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 import 'ssa/ssa.dart'; | 55 import 'ssa/ssa.dart'; |
56 import 'io/source_file.dart' show SourceFile; | 56 import 'io/source_file.dart' show SourceFile; |
57 import 'tracer.dart' show Tracer; | 57 import 'tracer.dart' show Tracer; |
58 import 'tree/tree.dart'; | 58 import 'tree/tree.dart'; |
59 import 'types/types.dart' as ti; | 59 import 'types/types.dart' as ti; |
60 import 'universe/universe.dart'; | 60 import 'universe/universe.dart'; |
61 import 'util/characters.dart' show $_; | 61 import 'util/characters.dart' show $_; |
62 import 'util/uri_extras.dart' as uri_extras show relativize; | 62 import 'util/uri_extras.dart' as uri_extras show relativize; |
63 import 'util/util.dart'; | 63 import 'util/util.dart'; |
64 | 64 |
| 65 import 'stats/builder.dart'; |
| 66 |
65 export 'helpers/helpers.dart'; | 67 export 'helpers/helpers.dart'; |
66 export 'resolution/resolution.dart' show TreeElements, TreeElementMapping; | 68 export 'resolution/resolution.dart' show TreeElements, TreeElementMapping; |
67 export 'scanner/scannerlib.dart' show isUserDefinableOperator, | 69 export 'scanner/scannerlib.dart' show isUserDefinableOperator, |
68 isUnaryOperator, | 70 isUnaryOperator, |
69 isBinaryOperator, | 71 isBinaryOperator, |
70 isTernaryOperator, | 72 isTernaryOperator, |
71 isMinusOperator; | 73 isMinusOperator; |
72 export 'universe/universe.dart' show CallStructure, Selector, TypedSelector; | 74 export 'universe/universe.dart' show CallStructure, Selector, TypedSelector; |
73 export 'util/util.dart' | 75 export 'util/util.dart' |
74 show Spannable, | 76 show Spannable, |
75 CURRENT_ELEMENT_SPANNABLE, | 77 CURRENT_ELEMENT_SPANNABLE, |
76 NO_LOCATION_SPANNABLE; | 78 NO_LOCATION_SPANNABLE; |
77 | 79 |
78 part 'compiler.dart'; | 80 part 'compiler.dart'; |
79 part 'diagnostic_listener.dart'; | 81 part 'diagnostic_listener.dart'; |
80 part 'enqueue.dart'; | 82 part 'enqueue.dart'; |
81 part 'resolved_visitor.dart'; | 83 part 'resolved_visitor.dart'; |
82 part 'script.dart'; | 84 part 'script.dart'; |
83 part 'typechecker.dart'; | 85 part 'typechecker.dart'; |
84 part 'warnings.dart'; | 86 part 'warnings.dart'; |
85 part 'world.dart'; | 87 part 'world.dart'; |
OLD | NEW |