| 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 213fd0a6e59c5ce1c3717afd7e8445f735b78821..ef28cb23d5b68662d365b9ea653a6358fa8f4eb0 100644
|
| --- a/pkg/analyzer/lib/src/dart/analysis/driver.dart
|
| +++ b/pkg/analyzer/lib/src/dart/analysis/driver.dart
|
| @@ -848,6 +848,7 @@ class AnalysisDriver {
|
| _sourceFactory,
|
| file.path,
|
| file.uri,
|
| + file.exists,
|
| content,
|
| file.contentHash,
|
| file.lineInfo,
|
| @@ -1311,6 +1312,11 @@ class AnalysisResult {
|
| final Uri uri;
|
|
|
| /**
|
| + * Return `true` if the file exists.
|
| + */
|
| + final bool exists;
|
| +
|
| + /**
|
| * The content of the file that was scanned, parsed and resolved.
|
| */
|
| final String content;
|
| @@ -1345,6 +1351,7 @@ class AnalysisResult {
|
| this.sourceFactory,
|
| this.path,
|
| this.uri,
|
| + this.exists,
|
| this.content,
|
| this.contentHash,
|
| this.lineInfo,
|
|
|