| Index: pkg/analyzer/lib/src/summary/resynthesize.dart
|
| diff --git a/pkg/analyzer/lib/src/summary/resynthesize.dart b/pkg/analyzer/lib/src/summary/resynthesize.dart
|
| index 159b3316372f730190d466a7ca7b433647c998b3..749812e8812768d25825b1d6ba2808f4da24a5f5 100644
|
| --- a/pkg/analyzer/lib/src/summary/resynthesize.dart
|
| +++ b/pkg/analyzer/lib/src/summary/resynthesize.dart
|
| @@ -1925,7 +1925,9 @@ class _UnitResynthesizer {
|
| }
|
| executableElement.type = new FunctionTypeImpl.elementWithNameAndArgs(
|
| executableElement, null, getCurrentTypeArguments(skipLevels: 1), false);
|
| + executableElement.asynchronous = serializedExecutable.isAsynchronous;
|
| executableElement.external = serializedExecutable.isExternal;
|
| + executableElement.generator = serializedExecutable.isGenerator;
|
| buildDocumentation(
|
| executableElement, serializedExecutable.documentationComment);
|
| buildAnnotations(executableElement, serializedExecutable.annotations);
|
|
|