| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 /// API to get results from a static analysis of the source program. | 5 /// API to get results from a static analysis of the source program. |
| 6 library compiler.src.stats.analysis_result; | 6 library compiler.src.stats.analysis_result; |
| 7 | 7 |
| 8 import '../tree/tree.dart' show Node; | 8 import '../tree/tree.dart' show Node; |
| 9 import '../universe/selector.dart' show Selector; | 9 import '../universe/selector.dart' show Selector; |
| 10 | 10 |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 /// accuracy. | 64 /// accuracy. |
| 65 /// * If [exists] is `yes`, the value is always considered 1 or more. | 65 /// * If [exists] is `yes`, the value is always considered 1 or more. |
| 66 /// If [isAccurate] is false, we treat it as there may be many possible | 66 /// If [isAccurate] is false, we treat it as there may be many possible |
| 67 /// targets. | 67 /// targets. |
| 68 /// * If [exists] is `maybe`, the value is considered 0 or more. | 68 /// * If [exists] is `maybe`, the value is considered 0 or more. |
| 69 int get possibleTargets; | 69 int get possibleTargets; |
| 70 | 70 |
| 71 /// Whether the information about [possibleTargets] is accurate. | 71 /// Whether the information about [possibleTargets] is accurate. |
| 72 bool get isAccurate; | 72 bool get isAccurate; |
| 73 } | 73 } |
| OLD | NEW |