7dd906db44
Function/constructor declaration start offset is the start offset of the corresponding declaration token, if available.
20 lines
148 B
Kotlin
Vendored
20 lines
148 B
Kotlin
Vendored
package test
|
|
|
|
|
|
fun test0() {}
|
|
|
|
|
|
/**
|
|
* block comment
|
|
*/
|
|
fun test1() {}
|
|
|
|
|
|
@Suppress(
|
|
"UNUSED_VARIABLE"
|
|
)
|
|
fun test2() {}
|
|
|
|
|
|
private
|
|
fun test3() {} |