mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 08:20:31 +00:00
Remove duplicate getters from ClassDeclaration and MixinDeclaration.
Change-Id: I69440dd7b1911db6616dc500d82b7b9c3e996529 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/313083 Reviewed-by: Samuel Rawlins <srawlins@google.com> Commit-Queue: Konstantin Shcheglov <scheglov@google.com>
This commit is contained in:
parent
7a258fa43b
commit
2c97bd7801
1 changed files with 0 additions and 44 deletions
|
@ -2757,35 +2757,13 @@ abstract final class ClassDeclaration
|
|||
/// does not extend any other class.
|
||||
ExtendsClause? get extendsClause;
|
||||
|
||||
/// Returns the implements clause for the class/mixin, or `null` if the
|
||||
/// class/mixin does not implement any interfaces.
|
||||
@override
|
||||
ImplementsClause? get implementsClause;
|
||||
|
||||
/// Return the 'inline' keyword, or `null` if the keyword was absent.
|
||||
@experimental
|
||||
Token? get inlineKeyword;
|
||||
|
||||
/// Returns the left curly bracket.
|
||||
@override
|
||||
Token get leftBracket;
|
||||
|
||||
/// Returns the members defined by the class/mixin.
|
||||
@override
|
||||
NodeList<ClassMember> get members;
|
||||
|
||||
/// Return the native clause for this class, or `null` if the class does not
|
||||
/// have a native clause.
|
||||
NativeClause? get nativeClause;
|
||||
|
||||
/// Returns the right curly bracket.
|
||||
@override
|
||||
Token get rightBracket;
|
||||
|
||||
/// Returns the type parameters for the class/mixin, or `null` if the
|
||||
/// class/mixin does not have any type parameters.
|
||||
@override
|
||||
TypeParameterList? get typeParameters;
|
||||
}
|
||||
|
||||
final class ClassDeclarationImpl extends ClassOrAugmentationDeclarationImpl
|
||||
|
@ -12429,28 +12407,6 @@ abstract final class MixinDeclaration
|
|||
implements MixinOrAugmentationDeclaration {
|
||||
@override
|
||||
MixinElement? get declaredElement;
|
||||
|
||||
/// Returns the implements clause for the class/mixin, or `null` if the
|
||||
/// class/mixin does not implement any interfaces.
|
||||
@override
|
||||
ImplementsClause? get implementsClause;
|
||||
|
||||
/// Returns the left curly bracket.
|
||||
@override
|
||||
Token get leftBracket;
|
||||
|
||||
/// Returns the members defined by the class/mixin.
|
||||
@override
|
||||
NodeList<ClassMember> get members;
|
||||
|
||||
/// Returns the right curly bracket.
|
||||
@override
|
||||
Token get rightBracket;
|
||||
|
||||
/// Returns the type parameters for the class/mixin, or `null` if the
|
||||
/// class/mixin does not have any type parameters.
|
||||
@override
|
||||
TypeParameterList? get typeParameters;
|
||||
}
|
||||
|
||||
final class MixinDeclarationImpl extends MixinOrAugmentationDeclarationImpl
|
||||
|
|
Loading…
Reference in a new issue