@@ -58,7 +58,7 @@ bool FrontendOptions::needsProperModuleName(ActionType action) {
58
58
case ActionType::Immediate:
59
59
case ActionType::REPL:
60
60
case ActionType::PrintVersion:
61
- case ActionType::PrintFeature :
61
+ case ActionType::PrintArguments :
62
62
return false ;
63
63
case ActionType::EmitAssembly:
64
64
case ActionType::EmitIRGen:
@@ -82,7 +82,7 @@ bool FrontendOptions::shouldActionOnlyParse(ActionType action) {
82
82
case ActionType::EmitImportedModules:
83
83
case ActionType::ScanDependencies:
84
84
case ActionType::PrintVersion:
85
- case ActionType::PrintFeature :
85
+ case ActionType::PrintArguments :
86
86
return true ;
87
87
default :
88
88
return false ;
@@ -103,7 +103,7 @@ bool FrontendOptions::doesActionRequireSwiftStandardLibrary(ActionType action) {
103
103
case ActionType::DumpPCM:
104
104
case ActionType::CompileModuleFromInterface:
105
105
case ActionType::TypecheckModuleFromInterface:
106
- case ActionType::PrintFeature :
106
+ case ActionType::PrintArguments :
107
107
return false ;
108
108
case ActionType::ResolveImports:
109
109
case ActionType::Typecheck:
@@ -138,7 +138,7 @@ bool FrontendOptions::doesActionRequireInputs(ActionType action) {
138
138
switch (action) {
139
139
case ActionType::NoneAction:
140
140
case ActionType::PrintVersion:
141
- case ActionType::PrintFeature :
141
+ case ActionType::PrintArguments :
142
142
return false ;
143
143
case ActionType::REPL:
144
144
case ActionType::Parse:
@@ -181,7 +181,7 @@ bool FrontendOptions::doesActionPerformEndOfPipelineActions(ActionType action) {
181
181
switch (action) {
182
182
case ActionType::NoneAction:
183
183
case ActionType::PrintVersion:
184
- case ActionType::PrintFeature :
184
+ case ActionType::PrintArguments :
185
185
case ActionType::EmitPCH:
186
186
case ActionType::EmitPCM:
187
187
case ActionType::DumpPCM:
@@ -226,7 +226,7 @@ bool FrontendOptions::supportCompilationCaching(ActionType action) {
226
226
switch (action) {
227
227
case ActionType::NoneAction:
228
228
case ActionType::PrintVersion:
229
- case ActionType::PrintFeature :
229
+ case ActionType::PrintArguments :
230
230
case ActionType::DumpPCM:
231
231
case ActionType::REPL:
232
232
case ActionType::Parse:
@@ -362,8 +362,8 @@ FrontendOptions::formatForPrincipalOutputFileForAction(ActionType action) {
362
362
363
363
case ActionType::ScanDependencies:
364
364
return TY_JSONDependencies;
365
- case ActionType::PrintFeature :
366
- return TY_JSONFeatures ;
365
+ case ActionType::PrintArguments :
366
+ return TY_JSONArguments ;
367
367
}
368
368
llvm_unreachable (" unhandled action" );
369
369
}
@@ -386,7 +386,7 @@ bool FrontendOptions::canActionEmitDependencies(ActionType action) {
386
386
case ActionType::REPL:
387
387
case ActionType::DumpPCM:
388
388
case ActionType::PrintVersion:
389
- case ActionType::PrintFeature :
389
+ case ActionType::PrintArguments :
390
390
return false ;
391
391
case ActionType::ResolveImports:
392
392
case ActionType::Typecheck:
@@ -432,7 +432,7 @@ bool FrontendOptions::canActionEmitReferenceDependencies(ActionType action) {
432
432
case ActionType::DumpPCM:
433
433
case ActionType::ScanDependencies:
434
434
case ActionType::PrintVersion:
435
- case ActionType::PrintFeature :
435
+ case ActionType::PrintArguments :
436
436
return false ;
437
437
case ActionType::Typecheck:
438
438
case ActionType::MergeModules:
@@ -482,7 +482,7 @@ bool FrontendOptions::canActionEmitModuleSummary(ActionType action) {
482
482
case ActionType::MergeModules:
483
483
case ActionType::EmitModuleOnly:
484
484
case ActionType::PrintVersion:
485
- case ActionType::PrintFeature :
485
+ case ActionType::PrintArguments :
486
486
return false ;
487
487
case ActionType::EmitSIL:
488
488
case ActionType::EmitLoweredSIL:
@@ -519,7 +519,7 @@ bool FrontendOptions::canActionEmitClangHeader(ActionType action) {
519
519
case ActionType::DumpPCM:
520
520
case ActionType::ScanDependencies:
521
521
case ActionType::PrintVersion:
522
- case ActionType::PrintFeature :
522
+ case ActionType::PrintArguments :
523
523
return false ;
524
524
case ActionType::Typecheck:
525
525
case ActionType::MergeModules:
@@ -560,7 +560,7 @@ bool FrontendOptions::canActionEmitLoadedModuleTrace(ActionType action) {
560
560
case ActionType::DumpPCM:
561
561
case ActionType::ScanDependencies:
562
562
case ActionType::PrintVersion:
563
- case ActionType::PrintFeature :
563
+ case ActionType::PrintArguments :
564
564
return false ;
565
565
case ActionType::ResolveImports:
566
566
case ActionType::Typecheck:
@@ -610,7 +610,7 @@ bool FrontendOptions::canActionEmitModuleSemanticInfo(ActionType action) {
610
610
case ActionType::DumpPCM:
611
611
case ActionType::ScanDependencies:
612
612
case ActionType::PrintVersion:
613
- case ActionType::PrintFeature :
613
+ case ActionType::PrintArguments :
614
614
case ActionType::EmitSIL:
615
615
case ActionType::EmitLoweredSIL:
616
616
case ActionType::EmitSIBGen:
@@ -653,7 +653,7 @@ bool FrontendOptions::canActionEmitConstValues(ActionType action) {
653
653
case ActionType::DumpPCM:
654
654
case ActionType::ScanDependencies:
655
655
case ActionType::PrintVersion:
656
- case ActionType::PrintFeature :
656
+ case ActionType::PrintArguments :
657
657
return false ;
658
658
case ActionType::Typecheck:
659
659
case ActionType::MergeModules:
@@ -698,7 +698,7 @@ bool FrontendOptions::canActionEmitModule(ActionType action) {
698
698
case ActionType::DumpPCM:
699
699
case ActionType::ScanDependencies:
700
700
case ActionType::PrintVersion:
701
- case ActionType::PrintFeature :
701
+ case ActionType::PrintArguments :
702
702
return false ;
703
703
case ActionType::MergeModules:
704
704
case ActionType::EmitModuleOnly:
@@ -744,7 +744,7 @@ bool FrontendOptions::canActionEmitInterface(ActionType action) {
744
744
case ActionType::EmitPCM:
745
745
case ActionType::DumpPCM:
746
746
case ActionType::ScanDependencies:
747
- case ActionType::PrintFeature :
747
+ case ActionType::PrintArguments :
748
748
return false ;
749
749
case ActionType::ResolveImports:
750
750
case ActionType::Typecheck:
@@ -787,7 +787,7 @@ bool FrontendOptions::canActionEmitAPIDescriptor(ActionType action) {
787
787
case ActionType::EmitPCM:
788
788
case ActionType::DumpPCM:
789
789
case ActionType::ScanDependencies:
790
- case ActionType::PrintFeature :
790
+ case ActionType::PrintArguments :
791
791
return false ;
792
792
case ActionType::ResolveImports:
793
793
case ActionType::Typecheck:
@@ -838,7 +838,7 @@ bool FrontendOptions::doesActionProduceOutput(ActionType action) {
838
838
case ActionType::EmitPCM:
839
839
case ActionType::DumpPCM:
840
840
case ActionType::ScanDependencies:
841
- case ActionType::PrintFeature :
841
+ case ActionType::PrintArguments :
842
842
return true ;
843
843
844
844
case ActionType::TypecheckModuleFromInterface:
@@ -889,7 +889,7 @@ bool FrontendOptions::doesActionProduceTextualOutput(ActionType action) {
889
889
case ActionType::DumpPCM:
890
890
case ActionType::ScanDependencies:
891
891
case ActionType::PrintVersion:
892
- case ActionType::PrintFeature :
892
+ case ActionType::PrintArguments :
893
893
return true ;
894
894
}
895
895
llvm_unreachable (" unhandled action" );
@@ -916,7 +916,7 @@ bool FrontendOptions::doesActionGenerateSIL(ActionType action) {
916
916
case ActionType::DumpPCM:
917
917
case ActionType::ScanDependencies:
918
918
case ActionType::PrintVersion:
919
- case ActionType::PrintFeature :
919
+ case ActionType::PrintArguments :
920
920
return false ;
921
921
case ActionType::EmitSILGen:
922
922
case ActionType::EmitSIBGen:
@@ -967,7 +967,7 @@ bool FrontendOptions::doesActionGenerateIR(ActionType action) {
967
967
case ActionType::DumpPCM:
968
968
case ActionType::ScanDependencies:
969
969
case ActionType::PrintVersion:
970
- case ActionType::PrintFeature :
970
+ case ActionType::PrintArguments :
971
971
return false ;
972
972
case ActionType::Immediate:
973
973
case ActionType::REPL:
@@ -1011,7 +1011,7 @@ bool FrontendOptions::doesActionBuildModuleFromInterface(ActionType action) {
1011
1011
case ActionType::DumpPCM:
1012
1012
case ActionType::ScanDependencies:
1013
1013
case ActionType::PrintVersion:
1014
- case ActionType::PrintFeature :
1014
+ case ActionType::PrintArguments :
1015
1015
case ActionType::Immediate:
1016
1016
case ActionType::REPL:
1017
1017
case ActionType::EmitIRGen:
0 commit comments