File tree Expand file tree Collapse file tree 3 files changed +2
-15
lines changed Expand file tree Collapse file tree 3 files changed +2
-15
lines changed Original file line number Diff line number Diff line change @@ -3178,8 +3178,6 @@ package:analyzer/dart/element/element.dart:
31783178 parameters (getter: List<ParameterElement>)
31793179 returnType (getter: DartType)
31803180 type (getter: FunctionType)
3181- GenericFunctionTypeElement (class extends Object implements FunctionTypedElement, deprecated):
3182- new (constructor: GenericFunctionTypeElement Function())
31833181 HideElementCombinator (class extends Object implements NamespaceCombinator):
31843182 new (constructor: HideElementCombinator Function())
31853183 hiddenNames (getter: List<String>)
Original file line number Diff line number Diff line change @@ -929,12 +929,6 @@ abstract class FunctionTypedElement implements TypeParameterizedElement {
929929 FunctionType get type;
930930}
931931
932- /// The pseudo-declaration that defines a generic function type.
933- ///
934- /// Clients may not extend, implement, or mix-in this class.
935- @Deprecated ('Use GenericFunctionTypeElement2 instead' )
936- abstract class GenericFunctionTypeElement implements FunctionTypedElement {}
937-
938932/// A combinator that causes some of the names in a namespace to be hidden when
939933/// being imported.
940934///
Original file line number Diff line number Diff line change @@ -5037,13 +5037,8 @@ abstract class FunctionTypedElementImpl2 extends TypeParameterizedElementImpl2
50375037///
50385038/// Clients may not extend, implement or mix-in this class.
50395039class GenericFunctionTypeElementImpl extends _ExistingElementImpl
5040- with
5041- TypeParameterizedElementMixin
5042- implements
5043- // ignore:deprecated_member_use_from_same_package,analyzer_use_new_elements
5044- GenericFunctionTypeElement ,
5045- FunctionTypedElementImpl ,
5046- GenericFunctionTypeFragment {
5040+ with TypeParameterizedElementMixin
5041+ implements FunctionTypedElementImpl , GenericFunctionTypeFragment {
50475042 /// The declared return type of the function.
50485043 TypeImpl ? _returnType;
50495044
You can’t perform that action at this time.
0 commit comments