[IR] update testdata: print arguments for annotations
This commit is contained in:
committed by
teamcityserver
parent
2a19dc32f2
commit
84d6e43590
+6
-6
@@ -9,7 +9,7 @@ annotation class TestAnn : Annotation {
|
||||
|
||||
}
|
||||
|
||||
@TestAnn(...)
|
||||
@TestAnn(x = "class")
|
||||
class TestClass {
|
||||
constructor() /* primary */ {
|
||||
TODO("IrDelegatingConstructorCall")
|
||||
@@ -22,14 +22,14 @@ class TestClass {
|
||||
|
||||
}
|
||||
|
||||
@TestAnn(...)
|
||||
@TestAnn(x = "interface")
|
||||
interface TestInterface {
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@TestAnn(...)
|
||||
@TestAnn(x = "object")
|
||||
object TestObject {
|
||||
private constructor() /* primary */ {
|
||||
TODO("IrDelegatingConstructorCall")
|
||||
@@ -49,7 +49,7 @@ class Host {
|
||||
|
||||
}
|
||||
|
||||
@TestAnn(...)
|
||||
@TestAnn(x = "companion")
|
||||
companion object TestCompanion {
|
||||
private constructor() /* primary */ {
|
||||
TODO("IrDelegatingConstructorCall")
|
||||
@@ -67,7 +67,7 @@ class Host {
|
||||
|
||||
}
|
||||
|
||||
@TestAnn(...)
|
||||
@TestAnn(x = "enum")
|
||||
enum class TestEnum : Enum<TestEnum> {
|
||||
private constructor() /* primary */ {
|
||||
TODO("IrEnumConstructorCall")
|
||||
@@ -88,7 +88,7 @@ enum class TestEnum : Enum<TestEnum> {
|
||||
|
||||
}
|
||||
|
||||
@TestAnn(...)
|
||||
@TestAnn(x = "annotation")
|
||||
annotation class TestAnnotation : Annotation {
|
||||
constructor() /* primary */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user