7dd906db44
Function/constructor declaration start offset is the start offset of the corresponding declaration token, if available.
14 lines
221 B
Kotlin
Vendored
14 lines
221 B
Kotlin
Vendored
class C {
|
|
constructor() : super()
|
|
|
|
private
|
|
constructor(x: Int): super()
|
|
|
|
/**
|
|
* comment
|
|
*/
|
|
constructor(x: String) : super()
|
|
|
|
@Suppress("UNUSED_VARIABLE")
|
|
constructor(x: Any): super()
|
|
} |