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
A Kotlin suspend lambda gets rewritten incorrectly. See #55 with failing test.
suspend
suspend fun example( title: String, verifyUnique: suspend (String) -> Boolean ): String = TODO()
becomes
suspend fun example( title: String, verifyUnique: Stringsuspend (String) -> Boolean ): String = TODO()
The text was updated successfully, but these errors were encountered:
Added support of suspend modifier on lambdas.
2cfafc4
fixes #56 #60
Successfully merging a pull request may close this issue.
A Kotlin
suspend
lambda gets rewritten incorrectly. See #55 with failing test.becomes
The text was updated successfully, but these errors were encountered: