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 added group around base type in AttributedTypeSyntax
Causes quite a few changes in eg. sourcekit-lsp, so presumably will in
other codebases as well. Ideally we'd add this behind some new
versioning in the config.
As an example of a change this causes:
```
private let logMessageToIndexLog:
@sendable (
_ message: String, _ type: WindowMessageType, _ structure: LanguageServerProtocol.StructuredLogKind
) -> Void
```
To:
```
@sendable
(
_ message: String, _ type: WindowMessageType, _ structure: LanguageServerProtocol.StructuredLogKind
) -> Void
```
0 commit comments