JP Simard
JP Simard
> Nice, that's already a great start. I think you also removed the entire `Codable` support, that seems like a big loss and sth we should look into maybe. I...
Re-added `YAMLDecoder`: ```swift let bandYAML = """ members: - name: John Coltrane age: 27 - name: Miles Davis age: 23 """ struct Person: Codable { let name: String let age:...
It's definitely possible to do this for real, not just as a proof-of-concept demo, it's just a matter of refactoring and time. Also some questions around what to do for...
That's not a declaration, that's an expression.
I gave a talk at App Builders 2016 demonstrating how you can use the `sourcekitten` CLI and `jq` to generate LinuxMain.swift, which might be a good starting point for you...
Can you share exact steps to cause Xcode to auto-generate this interface? If I have that I could probably figure out how to reverse engineer it to make SourceKitten do...
I suppose you're not actually looking for a Swift generated interface for the bridging header itself, but rather for the Objective-C interfaces it imports? If it's the latter, you can...
You can search for `interface-gen` in `apple/swift` and get tons of hits showing ways to use this: https://github.com/apple/swift/search?utf8=%E2%9C%93&q=interface-gen
Awesome tool @lvsti!
No, jazzy doesn't have the ability to split documentation into different language variants like you're proposing. That'd be an amazing feature to add though! Would you be interested in building...