Avatar
A set of Swift libraries for parsing, inspecting, generating, and transforming Swift source code. - swift-syntax/EditorExtension at main · apple/swift-syntax
12:57 PM
SwiftSyntaxを使って実装されたソースコードリファクタリングツールの SwiftRefactor と、それをXcodeから呼び出すための EditorExtension が生まれてた
👀 1
12:58 PM
/// ## Before /// /// if let foo = foo { /// // ... /// } /// /// /// ## After /// /// if let foo { /// // ... /// } (edited)
12:58 PM
新しいif letにするやつとか入ってるっぽい