-
Notifications
You must be signed in to change notification settings - Fork 10.5k
Open
Labels
SourceKitArea → source tooling: SourceKitArea → source tooling: SourceKitbugA deviation from expected or documented behavior. Also: expected but undesirable behavior.A deviation from expected or documented behavior. Also: expected but undesirable behavior.code completionArea → source tooling: code completionArea → source tooling: code completionfound by stress testerFlag: An issue found by the SourceKit stress testerFlag: An issue found by the SourceKit stress tester
Description
The following hits "too complex" and produces no completions:
import SwiftUI
func foo() -> some View {
Group {
Group {
Group {
Text("")
+ Text("")
.foregroundColor(Color(""))
+ Text("")
+ Text("")
+ Text("")
.#^CC^#
}
}
}
}
The expression without .#^CC^#
does type-check, although it takes several seconds
Metadata
Metadata
Assignees
Labels
SourceKitArea → source tooling: SourceKitArea → source tooling: SourceKitbugA deviation from expected or documented behavior. Also: expected but undesirable behavior.A deviation from expected or documented behavior. Also: expected but undesirable behavior.code completionArea → source tooling: code completionArea → source tooling: code completionfound by stress testerFlag: An issue found by the SourceKit stress testerFlag: An issue found by the SourceKit stress tester