We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SwiftParser currently can’t handle DocC-style abridged signatures such as:
init(String.Index, x:(Int) -> Int) rethrows
as they are considered malformed parse trees.
more details at https://forums.swift.org/t/swiftsyntax-how-to-repair-abbreviated-function-signatures/67602
The text was updated successfully, but these errors were encountered:
Tracked in Apple’s issue tracker as rdar://116364935
Sorry, something went wrong.
I think this issue is similar to what #2727 has solved, maybe some generalization can be used to apply the solution to this issue too.
No branches or pull requests
Description
SwiftParser currently can’t handle DocC-style abridged signatures such as:
as they are considered malformed parse trees.
more details at https://forums.swift.org/t/swiftsyntax-how-to-repair-abbreviated-function-signatures/67602
The text was updated successfully, but these errors were encountered: