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

Side by Side Diff: pkg/compiler/lib/src/info/analysis_result.dart

Issue 1385443003: dart2js: rename folder (stats -> info) (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 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) 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
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 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/dump_info.dart ('k') | pkg/compiler/lib/src/info/naive_analysis_result.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698