vkostyukov / kotlin-sublime-package

Sublime Text 2 Package for Kotlin Programming Language
Apache License 2.0
138 stars 42 forks source link

Doesn't recognize comments in data class constructor #32

Open FichteFoll opened 1 year ago

FichteFoll commented 1 year ago
data class CodeKey(
    var code: String,
    /* Block comment */
    // Line comment
    var key: String
    /* Block comment */
    // Line comment
)

2023-03-14_13-05-07