| 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 // TODO(sigmund): split out implementations out of this file. | 6 // TODO(sigmund): split out implementations out of this file. |
| 7 library compiler.src.stats.naive_analysis_result; | 7 library compiler.src.stats.naive_analysis_result; |
| 8 | 8 |
| 9 import 'analysis_result.dart'; | 9 import 'analysis_result.dart'; |
| 10 import '../tree/tree.dart' show Node; | 10 import '../tree/tree.dart' show Node; |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 final Node receiver; | 35 final Node receiver; |
| 36 final Selector selector; | 36 final Selector selector; |
| 37 | 37 |
| 38 NaiveSelectorInfo(this.receiver, this.selector); | 38 NaiveSelectorInfo(this.receiver, this.selector); |
| 39 | 39 |
| 40 Boolish get exists => Boolish.maybe; | 40 Boolish get exists => Boolish.maybe; |
| 41 Boolish get usesInterceptor => Boolish.maybe; | 41 Boolish get usesInterceptor => Boolish.maybe; |
| 42 int get possibleTargets => -1; | 42 int get possibleTargets => -1; |
| 43 bool get isAccurate => false; | 43 bool get isAccurate => false; |
| 44 } | 44 } |
| OLD | NEW |