Skip to content

Commit 809573c

Browse files
johnniwintherCommit Queue
authored andcommitted
[cfe] Move FieldDeclaration et al. to their own libraries
Change-Id: I7d086497e4057bd73988772ccdc09e731375a01e Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/424942 Reviewed-by: Chloe Stefantsova <[email protected]> Commit-Queue: Johnni Winther <[email protected]>
1 parent 7b10dc6 commit 809573c

File tree

11 files changed

+737
-696
lines changed

11 files changed

+737
-696
lines changed

pkg/front_end/lib/src/fragment/enum_element.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -578,19 +578,19 @@ class EnumElementDeclaration
578578

579579
@override
580580
// Coverage-ignore(suite): Not run.
581-
DartType get _fieldTypeInternal => _type;
581+
DartType get fieldTypeInternal => _type;
582582

583583
@override
584584
bool get isConst => true;
585585

586586
@override
587587
// Coverage-ignore(suite): Not run.
588-
void _setCovariantByClassInternal() {
588+
void setCovariantByClassInternal() {
589589
_field!.isCovariantByClass = true;
590590
}
591591

592592
@override
593-
void set _fieldTypeInternal(DartType value) {
593+
void set fieldTypeInternal(DartType value) {
594594
_type = value;
595595
_field?.type = value;
596596
}

0 commit comments

Comments
 (0)