You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove special handling of the -experimental-lazy-typecheck flag.
For now, the flag will simply be a frontend flag and the build system will pass
it directly using `-Xfrontend` when appropriate.
Resolves rdar://117168788
Copy file name to clipboardExpand all lines: Sources/SwiftOptions/Options.swift
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -439,7 +439,7 @@ extension Option {
439
439
publicstaticletdriverExperimentalExplicitModuleBuild:Option=Option("-experimental-explicit-module-build",.flag, alias:Option.driverExplicitModuleBuild, attributes:[.helpHidden], helpText:"Prebuild module dependencies to make them explicit")
440
440
publicstaticletforceWorkaroundBrokenModules:Option=Option("-experimental-force-workaround-broken-modules",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Attempt unsafe recovery for imported modules with broken modularization")
441
441
publicstaticletexperimentalHermeticSealAtLink:Option=Option("-experimental-hermetic-seal-at-link",.flag, attributes:[.helpHidden,.frontend], helpText:"Library code can assume that all clients are visible at linktime, and aggressively strip unused code")
442
-
publicstaticletexperimentalLazyTypecheck:Option=Option("-experimental-lazy-typecheck",.flag, attributes:[.helpHidden,.frontend,.noInteractive,.doesNotAffectIncrementalBuild], helpText:"Parse input file(s), then type-check lazily as needed to produce requested outputs", group:.modes)
442
+
publicstaticletexperimentalLazyTypecheck:Option=Option("-experimental-lazy-typecheck",.flag, attributes:[.helpHidden,.frontend,.noInteractive,.doesNotAffectIncrementalBuild], helpText:"Parse input file(s), then type-check lazily as needed to produce requested outputs")
443
443
publicstaticletexperimentalOneWayClosureParams:Option=Option("-experimental-one-way-closure-params",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Enable experimental support for one-way closure parameters")
444
444
publicstaticletExperimentalPerformanceAnnotations:Option=Option("-experimental-performance-annotations",.flag, attributes:[.helpHidden,.frontend], helpText:"Deprecated, has no effect")
0 commit comments