File tree Expand file tree Collapse file tree 1 file changed +21
-9
lines changed
Sources/SWBUniversalPlatform/Specs Expand file tree Collapse file tree 1 file changed +21
-9
lines changed Original file line number Diff line number Diff line change 795
795
796
796
{
797
797
Name = "SWIFT_UPCOMING_FEATURE_EXISTENTIAL_ANY";
798
- Type = Boolean;
799
- DefaultValue = NO;
798
+ Type = Enumeration;
799
+ Values = (
800
+ Yes,
801
+ Migrate,
802
+ No,
803
+ );
804
+ DefaultValue = No;
800
805
CommandLineArgs = {
801
- YES = ( "-enable-upcoming-feature", "ExistentialAny" );
802
- NO = ();
806
+ Yes = ( "-enable-upcoming-feature", "ExistentialAny" );
807
+ Migrate = ( "-enable-upcoming-feature", "ExistentialAny:migrate" );
808
+ No = ();
803
809
};
804
810
DisplayName = "Require Existential any";
805
811
Category = "Upcoming Features";
821
827
822
828
{
823
829
Name = "SWIFT_UPCOMING_FEATURE_NONISOLATED_NONSENDING_BY_DEFAULT";
824
- Type = Boolean;
825
- DefaultValue = NO;
830
+ Type = Enumeration;
831
+ Values = (
832
+ Yes,
833
+ Migrate,
834
+ No,
835
+ );
836
+ DefaultValue = No;
826
837
CommandLineArgs = {
827
- YES = ( "-enable-upcoming-feature", "NonisolatedNonsendingByDefault" );
828
- NO = ();
838
+ Yes = ( "-enable-upcoming-feature", "NonisolatedNonsendingByDefault" );
839
+ Migrate = ( "-enable-upcoming-feature", "NonisolatedNonsendingByDefault:migrate" );
840
+ No = ();
829
841
};
830
- DisplayName = "Nonisolated Nonsending By Default";
842
+ DisplayName = "nonisolated(nonsending) By Default";
831
843
Category = "Upcoming Features";
832
844
Description = "Runs nonisolated async functions on the caller's actor by default unless the function is explicitly marked `@concurrent`.";
833
845
},
You can’t perform that action at this time.
0 commit comments