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

Unified Diff: pkg/analyzer/lib/src/dart/analysis/driver.dart

Issue 2998423002: Clean up comments for AnalysisDriver results. (Closed)
Patch Set: Created 3 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/dart/analysis/driver.dart
diff --git a/pkg/analyzer/lib/src/dart/analysis/driver.dart b/pkg/analyzer/lib/src/dart/analysis/driver.dart
index fdb01cb6064e6b4f71caba5eb3cde3f22f10c069..3b84263ef16633439aa0085b63224e4fb5c37cb5 100644
--- a/pkg/analyzer/lib/src/dart/analysis/driver.dart
+++ b/pkg/analyzer/lib/src/dart/analysis/driver.dart
@@ -1697,7 +1697,7 @@ class AnalysisDriverTestView {
/**
* The result of analyzing of a single file.
*
- * These results are self-consistent, i.e. [content], [contentHash], the
+ * These results are self-consistent, i.e. [content], [lineInfo], the
* resolved [unit] correspond to each other. All referenced elements, even
* external ones, are also self-consistent. But none of the results is
* guaranteed to be consistent with the state of the files.
@@ -1815,9 +1815,9 @@ abstract class DriverWatcher {
/**
* The errors in a single file.
*
- * These results are self-consistent, i.e. [content], [contentHash], [errors]
- * correspond to each other. But none of the results is guaranteed to be
- * consistent with the state of the files.
+ * These results are self-consistent, i.e. [errors] and [lineInfo] correspond
+ * to each other. But none of the results is guaranteed to be consistent with
+ * the state of the files.
*/
class ErrorsResult extends BaseAnalysisResult implements results.ErrorsResult {
@override
@@ -1864,8 +1864,8 @@ class ExceptionResult {
/**
* The result of parsing of a single file.
*
- * These results are self-consistent, i.e. [content], [contentHash], the
- * resolved [unit] correspond to each other. But none of the results is
+ * These results are self-consistent, i.e. [content], [lineInfo], the
+ * parsed [unit] correspond to each other. But none of the results is
* guaranteed to be consistent with the state of the files.
*/
class ParseResult extends BaseAnalysisResult implements results.ParseResult {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698