| 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 a091a6ec65241f3a060585b11fd4187747735e06..168069365dddb201aa3788b24a14d9be42f23456 100644
|
| --- a/pkg/analyzer/lib/src/summary/resynthesize.dart
|
| +++ b/pkg/analyzer/lib/src/summary/resynthesize.dart
|
| @@ -513,6 +513,7 @@ class _LibraryResynthesizer {
|
| getter.returnType = type;
|
| getter.type = new FunctionTypeImpl(getter);
|
| getter.variable = element;
|
| + getter.hasImplicitReturnType = element.hasImplicitType;
|
| holder.addAccessor(getter);
|
| element.getter = getter;
|
| if (!(element.isConst || element.isFinal)) {
|
| @@ -879,6 +880,7 @@ class _LibraryResynthesizer {
|
| UnlinkedVariable serializedVariable) {
|
| element.type = buildType(serializedVariable.type);
|
| element.const3 = serializedVariable.isConst;
|
| + element.hasImplicitType = serializedVariable.hasImplicitType;
|
| }
|
|
|
| /**
|
|
|