Keith Smiley
Keith Smiley
Can you paste the output you see when you run it?
Yep seems reasonable, PRs welcome!
I'm not sure if all the metadata is accessible in the API as it is today, but otherwise I think it would be do-able
Any quick guide on how that works? I've never done that with one of my issues
Here's one case where we see the SyntaxError when handling double optionals: ```swift final class Foo { func bar(string: String??) { if case let string?? = string {} } }...
Here's another case: ```swift final class Foo { func bar() { switch "" { case "foo": return default: break } } } ```
Here's another case with multi-line strings: ```swift final class Foo { func bar() { """ Shouldn't be able to update a pickup location if there is no current ride, or...
Another case with some weird characters for variable names: ```swift final class Foo { func bar() { let sinφ = sin(0) } } ```
Another case if you add a newline between your function name and the arguments 🙃 ```swift final class Foo { func bar (completion: @escaping () -> Void) {} } ```
I think that's most of the case we have, happy to provide more info if that would be useful! This was with neal from homebrew with `--HEAD` at c40036d