| Index: pkg/analyzer/lib/src/context/context.dart
|
| diff --git a/pkg/analyzer/lib/src/context/context.dart b/pkg/analyzer/lib/src/context/context.dart
|
| index d2659baf50c4ab302d1c92cf233bc72c992fd65e..931e24e3b76f1cd4800c8b2bc48dafb9784fb1b2 100644
|
| --- a/pkg/analyzer/lib/src/context/context.dart
|
| +++ b/pkg/analyzer/lib/src/context/context.dart
|
| @@ -833,8 +833,8 @@ class AnalysisContextImpl implements InternalAnalysisContext {
|
| }
|
|
|
| @override
|
| - Object getConfigurationData(ResultDescriptor key) =>
|
| - _configurationData[key] ?? key?.defaultValue;
|
| + Object/*=V*/ getConfigurationData/*<V>*/(ResultDescriptor/*<V>*/ key) =>
|
| + (_configurationData[key] ?? key?.defaultValue) as Object/*=V*/;
|
|
|
| @override
|
| TimestampedData<String> getContents(Source source) {
|
|
|