vkostyukov / kotlin-sublime-package

Sublime Text 2 Package for Kotlin Programming Language
Apache License 2.0
137 stars 41 forks source link

Comments inside class header not handled correctly #19

Closed belyaev-mikhail closed 6 years ago

belyaev-mikhail commented 6 years ago

Examples:

data class Foo(val x: Int) // a very cool class indeed
data class Bar(val x: Int)
class IAmAClass  /* this is a class, buds, and I am somehow not a comment: 2 + 4 */ {}
fun foo() : Int {}