Avatar
Kishikawa Katsumi 3/18/2025 1:27 PM
ちょっと調べてみるか。
1:31 PM
https://github.com/swiftlang/swift/pull/71237 なんか意図してないケースまで拾ってる気がする。
Disallow space between @ and attribute name in Swift 6 mode Not having a space between @ and the attribute name (or even having them on different lines) is weird and shouldn’t be allowed Disallo...
👀 1
1:32 PM
private (set) var context: Context // Extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode I am curious about why this is an error in Swift 6 language mode? Is there is a technical reason for it?
Motivation I get a warning in XCode 16 about code like this: private (set) var messagesEnabled : Bool = false @objc (addInfo:) public func add(info : CDDeviceInfo) Where I get "Extraneous whit...