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
@@ -440,7 +440,7 @@ extension Option {
440
440
publicstaticletdriverExperimentalExplicitModuleBuild:Option=Option("-experimental-explicit-module-build",.flag, alias:Option.driverExplicitModuleBuild, attributes:[.helpHidden], helpText:"Prebuild module dependencies to make them explicit")
441
441
publicstaticletforceWorkaroundBrokenModules:Option=Option("-experimental-force-workaround-broken-modules",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Attempt unsafe recovery for imported modules with broken modularization")
442
442
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")
443
-
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)
443
+
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")
444
444
publicstaticletexperimentalOneWayClosureParams:Option=Option("-experimental-one-way-closure-params",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Enable experimental support for one-way closure parameters")
445
445
publicstaticletExperimentalPerformanceAnnotations:Option=Option("-experimental-performance-annotations",.flag, attributes:[.helpHidden,.frontend], helpText:"Deprecated, has no effect")
0 commit comments