Commit d022b8b
committed
Remove added group around base type in
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
```AttributedTypeSyntax
1 parent f45ca4f commit d022b8b
File tree
2 files changed
+6
-9
lines changed- Sources/SwiftFormat/PrettyPrint
- Tests/SwiftFormatTests/PrettyPrint
2 files changed
+6
-9
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2411 | 2411 | | |
2412 | 2412 | | |
2413 | 2413 | | |
2414 | | - | |
2415 | | - | |
2416 | | - | |
2417 | 2414 | | |
2418 | 2415 | | |
2419 | 2416 | | |
| |||
Lines changed: 6 additions & 6 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
316 | 316 | | |
317 | 317 | | |
318 | 318 | | |
319 | | - | |
320 | | - | |
| 319 | + | |
| 320 | + | |
321 | 321 | | |
322 | 322 | | |
323 | 323 | | |
324 | 324 | | |
325 | 325 | | |
326 | | - | |
327 | | - | |
| 326 | + | |
| 327 | + | |
328 | 328 | | |
329 | 329 | | |
330 | 330 | | |
| |||
336 | 336 | | |
337 | 337 | | |
338 | 338 | | |
339 | | - | |
340 | | - | |
| 339 | + | |
| 340 | + | |
341 | 341 | | |
342 | 342 | | |
343 | 343 | | |
| |||
0 commit comments