| 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.compiler_base; | 5 library dart2js.compiler_base; |
| 6 | 6 |
| 7 import 'dart:async' show | 7 import 'dart:async' show |
| 8 EventSink, | 8 EventSink, |
| 9 Future; | 9 Future; |
| 10 | 10 |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 import 'resolution/resolution.dart' show | 102 import 'resolution/resolution.dart' show |
| 103 ResolverTask; | 103 ResolverTask; |
| 104 import 'resolution/tree_elements.dart' show | 104 import 'resolution/tree_elements.dart' show |
| 105 TreeElementMapping; | 105 TreeElementMapping; |
| 106 import 'scanner/scanner_task.dart' show | 106 import 'scanner/scanner_task.dart' show |
| 107 ScannerTask; | 107 ScannerTask; |
| 108 import 'serialization/task.dart' show | 108 import 'serialization/task.dart' show |
| 109 SerializationTask; | 109 SerializationTask; |
| 110 import 'script.dart' show | 110 import 'script.dart' show |
| 111 Script; | 111 Script; |
| 112 import 'ssa/ssa.dart' show | 112 import 'ssa/nodes.dart' show |
| 113 HInstruction; | 113 HInstruction; |
| 114 import 'tracer.dart' show | 114 import 'tracer.dart' show |
| 115 Tracer; | 115 Tracer; |
| 116 import 'tokens/token.dart' show | 116 import 'tokens/token.dart' show |
| 117 StringToken, | 117 StringToken, |
| 118 Token, | 118 Token, |
| 119 TokenPair; | 119 TokenPair; |
| 120 import 'tokens/token_constants.dart' as Tokens show | 120 import 'tokens/token_constants.dart' as Tokens show |
| 121 COMMENT_TOKEN, | 121 COMMENT_TOKEN, |
| 122 EOF_TOKEN; | 122 EOF_TOKEN; |
| (...skipping 2080 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2203 if (_otherDependencies == null) { | 2203 if (_otherDependencies == null) { |
| 2204 _otherDependencies = new Setlet<Element>(); | 2204 _otherDependencies = new Setlet<Element>(); |
| 2205 } | 2205 } |
| 2206 _otherDependencies.add(element.implementation); | 2206 _otherDependencies.add(element.implementation); |
| 2207 } | 2207 } |
| 2208 | 2208 |
| 2209 Iterable<Element> get otherDependencies { | 2209 Iterable<Element> get otherDependencies { |
| 2210 return _otherDependencies != null ? _otherDependencies : const <Element>[]; | 2210 return _otherDependencies != null ? _otherDependencies : const <Element>[]; |
| 2211 } | 2211 } |
| 2212 } | 2212 } |
| OLD | NEW |