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
Interfaces don't require a block, but the highlighter won't highlight correctly until it finds a block for the interface.
interface Test /** * Doc Block Comment */ val test = 1 /** * asdf */ val T_UNDEF = object { override fun toString() = "undefined type" } /** * Another Doc Block Comment */ val test2 = 2
With an empty block, everything works normally.
interface Test {} /** * Doc Block Comment */ val test = 1 /** * asdf */ val T_UNDEF = object { override fun toString() = "undefined type" } /** * Another Doc Block Comment */ val test2 = 2
The text was updated successfully, but these errors were encountered:
Same thing happens with annotation classes without bodies https://github.com/JetBrains/kotlin/blob/master/libraries/kotlin.test/js/src/main/kotlin/kotlin/test/Annotations.kt
Sorry, something went wrong.
No branches or pull requests
Interfaces don't require a block, but the highlighter won't highlight correctly until it finds a block for the interface.
With an empty block, everything works normally.
The text was updated successfully, but these errors were encountered: