summaryrefslogtreecommitdiff
path: root/plugins/kotlin/uast/uast-kotlin-fir/testData/declaration/facade.comments.txt
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/kotlin/uast/uast-kotlin-fir/testData/declaration/facade.comments.txt')
-rw-r--r--plugins/kotlin/uast/uast-kotlin-fir/testData/declaration/facade.comments.txt28
1 files changed, 22 insertions, 6 deletions
diff --git a/plugins/kotlin/uast/uast-kotlin-fir/testData/declaration/facade.comments.txt b/plugins/kotlin/uast/uast-kotlin-fir/testData/declaration/facade.comments.txt
index 5b00c9cf37c2..8b7aea4b9618 100644
--- a/plugins/kotlin/uast/uast-kotlin-fir/testData/declaration/facade.comments.txt
+++ b/plugins/kotlin/uast/uast-kotlin-fir/testData/declaration/facade.comments.txt
@@ -1,14 +1,30 @@
-KotlinUFile(
- KotlinUClass(
- KotlinUMethod(
+KotlinUFile:facade.kt(
+ KotlinUClass:Utils(
+ KotlinUMethod:foo(
UComment(// Single-line comment bound to fun foo)
)
- KotlinUMethod(
+ KotlinUMethod:buzz(
UComment(/*
* Multi-line comment bound to extension fun buzz
*/)
- KotlinReceiverUParameter(
+ KotlinReceiverUParameter:$this$buzz(
)
)
+ KotlinUMethod:getBoo(
+ UComment(/**
+ * Multi-line document bound to property boo (w/ initializer)
+ */)
+ )
+ KotlinUMethod:getBar(
+ UComment(// Single-line comment bound to getter for property bar)
+ )
+ KotlinUMethod:getBaq(
+ UComment(// Single-line comment bound to property baq (w/ backing field access))
+ )
+ KotlinUMethod:getBaz(
+ UComment(/**
+ * Multi-line document bound to property baz (w/o backing field)
+ */)
+ )
)
-) \ No newline at end of file
+)