33e6a85a2d
We exclude testData pattern from copyright scope
30 lines
606 B
Kotlin
Vendored
30 lines
606 B
Kotlin
Vendored
/* RootScriptStructureElement */fun (a: Int = 1): String = "str"/* DeclarationStructureElement */
|
|
|
|
fun () {/* DeclarationStructureElement */
|
|
|
|
}
|
|
|
|
val : Int = 4/* DeclarationStructureElement */
|
|
|
|
var : Int/* DeclarationStructureElement */
|
|
get() = 4
|
|
set(value) {
|
|
|
|
}
|
|
|
|
class A {/* ClassDeclarationStructureElement */
|
|
fun (a: Int = 1): String = "str"/* DeclarationStructureElement */
|
|
|
|
fun () {/* DeclarationStructureElement */
|
|
|
|
}
|
|
|
|
val : Int = 4/* DeclarationStructureElement */
|
|
|
|
var : Boolean/* DeclarationStructureElement */
|
|
get() = true
|
|
set(value) {
|
|
|
|
}
|
|
}
|