summaryrefslogtreecommitdiff
path: root/plugins/kotlin/uast/uast-kotlin-fir/testData/declaration/commentsOnProperties.comments.txt
blob: 5991a026e1b196f605e24bdf8e9c8b6d40c4f24d (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
KotlinUFile:commentsOnProperties.kt(
    KotlinUClass:CommentsOnPropertiesKt(
        KotlinUField:boo(
            UComment(/**
             * Multi-line document bound to property boo (w/ initializer)
             */)
        )
        KotlinUField:bar(
            UComment(/**
             * Multi-line document bound to property bar (w/ backing field access)
             */)
        )
        KotlinUField:baq(
            UComment(// Single-line comment bound to property baq (w/ backing field access))
        )
        KotlinUMethod:getBoo(
        )
        KotlinUMethod:getBar(
            UComment(// Single-line comment bound to getter for property bar)
        )
        KotlinUMethod:getBaq(
        )
        KotlinUMethod:getBaz(
            UComment(/**
             * Multi-line document bound to property baz (w/o backing field)
             */)
        )
    )
    KotlinUClass:Test(
        KotlinUField:foo(
            UComment(/**
                 * Multi-line document bound to property foo (w/ initializer)
                 */)
        )
        KotlinUField:far(
            UComment(/**
                 * Multi-line document bound to property far (w/ backing field access)
                 */)
        )
        KotlinUField:faq(
            UComment(// Single-line comment bound to property faq (w/ backing field access))
        )
        KotlinUMethod:getFoo(
        )
        KotlinUMethod:getFar(
            UComment(// Single-line comment bound to getter for property bar)
        )
        KotlinUMethod:getFaq(
        )
        KotlinUMethod:getFaz(
            UComment(/**
                 * Multi-line document bound to property faz (w/o backing field)
                 */)
        )
        KotlinConstructorUMethod:Test(
        )
    )
)