7dd906db44
Function/constructor declaration start offset is the start offset of the corresponding declaration token, if available.
14 lines
191 B
Kotlin
Vendored
14 lines
191 B
Kotlin
Vendored
class Test1(val x: Int)
|
|
|
|
class Test2
|
|
internal constructor(val x: Int)
|
|
|
|
class Test3
|
|
/**
|
|
* comment
|
|
*/
|
|
constructor(val x: Int)
|
|
|
|
class Test4
|
|
@Suppress("UNUSED_VARIABLE")
|
|
constructor(val x: Int) |