File tree 3 files changed +6
-2
lines changed
3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -3456,7 +3456,7 @@ package:analyzer/dart/element/element.dart:
3456
3456
parameters (getter: List<ParameterElement>)
3457
3457
typeParameters (getter: List<TypeParameterElement>, deprecated)
3458
3458
appendToWithoutDelimiters (method: void Function(StringBuffer, {bool withNullability}))
3459
- PartElement (class extends Object implements _ExistingElement):
3459
+ PartElement (class extends Object implements _ExistingElement, deprecated ):
3460
3460
new (constructor: PartElement Function())
3461
3461
uri (getter: DirectiveUri)
3462
3462
PatternVariableElement (class extends Object implements LocalVariableElement, deprecated):
Original file line number Diff line number Diff line change @@ -2007,6 +2007,7 @@ abstract class ParameterElement
2007
2007
/// A 'part' directive within a library.
2008
2008
///
2009
2009
/// Clients may not extend, implement or mix-in this class.
2010
+ @Deprecated ('Use PartInclude instead' )
2010
2011
abstract class PartElement implements _ExistingElement {
2011
2012
/// The interpretation of the URI specified in the directive.
2012
2013
DirectiveUri get uri;
Original file line number Diff line number Diff line change @@ -9655,7 +9655,10 @@ mixin ParameterElementMixin
9655
9655
}
9656
9656
9657
9657
class PartElementImpl extends _ExistingElementImpl
9658
- implements PartElement , PartInclude {
9658
+ implements
9659
+ // ignore:deprecated_member_use_from_same_package
9660
+ PartElement ,
9661
+ PartInclude {
9659
9662
@override
9660
9663
final DirectiveUriImpl uri;
9661
9664
You can’t perform that action at this time.
0 commit comments