| Index: pkg/analyzer/lib/task/dart.dart
|
| diff --git a/pkg/analyzer/lib/task/dart.dart b/pkg/analyzer/lib/task/dart.dart
|
| index 2918d20e5eda586def91889c36e2ac135e61a594..e4c4a9bdb3802065f4a19f357b073d9b77792e9f 100644
|
| --- a/pkg/analyzer/lib/task/dart.dart
|
| +++ b/pkg/analyzer/lib/task/dart.dart
|
| @@ -103,6 +103,14 @@ final ResultDescriptor<CompilationUnit> PARSED_UNIT =
|
| new ResultDescriptor<CompilationUnit>('PARSED_UNIT', null);
|
|
|
| /**
|
| + * The resolved [CompilationUnit] associated with a unit.
|
| + *
|
| + * The result is only available for targets representing a unit.
|
| + */
|
| +final ResultDescriptor<CompilationUnit> RESOLVED_UNIT =
|
| + new ResultDescriptor<CompilationUnit>('RESOLVED_UNIT', null);
|
| +
|
| +/**
|
| * The errors produced while scanning a compilation unit.
|
| *
|
| * The list will be empty if there were no errors, but will not be `null`.
|
|
|