Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ class C extends A {
}

enum E {
// ^
// [cfe] unspecified
e1;
//^
// [cfe] unspecified
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ class C {
}

enum E {
// ^
// [cfe] unspecified
a(1);
//^
// [cfe] unspecified
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ class C {
}

enum E {
// ^
// [cfe] unspecified
a(x: 1);
//^
// [cfe] unspecified
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ class C {
}

enum E {
// ^
// [cfe] unspecified
a(x: 1);
//^
// [cfe] unspecified
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ class C {
}

enum E {
// ^
// [cfe] unspecified
a(1);
//^
// [cfe] unspecified
Expand Down
4 changes: 0 additions & 4 deletions LanguageFeatures/Enhanced-Enum/semantics_A06_t07.dart
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ String y = "s";
double z = 3.14;

enum E1 {
// ^^
// [cfe] unspecified
e1(x, "2"),
// ^
// [analyzer] unspecified
Expand All @@ -54,8 +52,6 @@ enum E1 {
}

enum E2<T1 extends num, T2> {
// ^^
// [cfe] unspecified
e1<int, String>(x, "Lily was here"),
// ^
// [analyzer] unspecified
Expand Down
4 changes: 4 additions & 0 deletions LanguageFeatures/Enhanced-Enum/semantics_A09_t05.dart
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ enum E1 {
e3;

void set e1(int v) {}
// ^^
// [cfe] unspecified
}

enum E2<T> {
Expand All @@ -38,6 +40,8 @@ enum E2<T> {

const E2(T t);
void set e2(int v) {}
// ^^
// [cfe] unspecified
}

enum E3 {
Expand Down
2 changes: 0 additions & 2 deletions LanguageFeatures/Enhanced-Enum/semantics_A14_t01.dart
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ enum E1 {
}

enum E2<T> {
// ^^
// [cfe] unspecified
e1<int>(i),
// ^
// [analyzer] unspecified
Expand Down
Loading