Add EnumEntries to minimal-stdlib-for-tests

This change allows to revert adding `WITH_STDLIB` directive
to tests which happened at `a9343aeb`.

Co-authored-by: Alexander Udalov <Alexander.Udalov@jetbrains.com>
This commit is contained in:
Nikolay Lunyak
2023-02-13 10:36:52 +02:00
committed by Space Team
parent 3b9724d20e
commit bcfafc601e
497 changed files with 600 additions and 318 deletions
@@ -20,6 +20,7 @@ public final enum class TestErrors : kotlin.Enum<TestErrors> {
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
// Static members
public final /*synthesized*/ val entries: kotlin.enums.EnumEntries<TestErrors>
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): TestErrors
public final /*synthesized*/ fun values(): kotlin.Array<TestErrors>
}
@@ -42,6 +43,7 @@ public final enum class TestMultipleConstructors : kotlin.Enum<TestMultipleConst
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
// Static members
public final /*synthesized*/ val entries: kotlin.enums.EnumEntries<TestMultipleConstructors>
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): TestMultipleConstructors
public final /*synthesized*/ fun values(): kotlin.Array<TestMultipleConstructors>
}
@@ -66,6 +68,7 @@ public final enum class TestOk : kotlin.Enum<TestOk> {
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
// Static members
public final /*synthesized*/ val entries: kotlin.enums.EnumEntries<TestOk>
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): TestOk
public final /*synthesized*/ fun values(): kotlin.Array<TestOk>
}
@@ -87,6 +90,7 @@ public final enum class TestVarargs : kotlin.Enum<TestVarargs> {
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
// Static members
public final /*synthesized*/ val entries: kotlin.enums.EnumEntries<TestVarargs>
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): TestVarargs
public final /*synthesized*/ fun values(): kotlin.Array<TestVarargs>
}