blob: 50a43dfdc68906deb0844ff869e62f82cbc3443e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
// this file is not included in sources or tests, you can play with it for debug purposes
// Console run configuration will analyse it and provide lots of debug output
fun topLevelFunction() {
}
val topLevelConstantValue = "Hello"
val topLevelValue: String
get() = "Bye bye"
var topLevelVariable: String
get() = "Modify me!"
set(value) {
}
/**
* This is a class
*/
class Class {
fun memberFunction() {
}
val memberValue = "Member"
}
/**
* This is a class with constructor and space after doc
*/
class ClassWithConstructor(val name: String)
/**
* This is data class with constructor and comment after doc
*/
// irrelevant comment
data class DataClass(val name: String, val age: Int) {}
object Object {
fun objectFunction() {
}
val objectValue: String
/** one line getter doc */
get() = "Member"
}
class OuterClass {
class NestedClass {
fun nestedClassFunction() {
}
}
inner class InnerClass {
fun innerClassFunction() {
}
}
object NestedObject {
fun nestedObjectFunction() {
}
}
}
|