| 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 {
|
|
|