nishtahir / language-kotlin

Textmate language grammar for the Kotlin programming language
Apache License 2.0
12 stars 6 forks source link

Incorrect highlighting of functional interfaces and its member. #48

Closed Animeshz closed 3 years ago

Animeshz commented 3 years ago

Self explanatory with the following example:

fun interface ITestInterface {
    fun sam(): Unit
}