Searched refs:kotlinLikeDescription (Results 1 – 6 of 6) sorted by relevance
40 assertThat(method.kotlinLikeDescription()) in Test suspend top level fun with nullable return type()59 assertThat(method.kotlinLikeDescription()) in Test suspend top level fun with non-nullable return type()80 assertThat(method.kotlinLikeDescription()) in Test suspend interface fun with nullable return type()101 assertThat(method.kotlinLikeDescription()) in Test suspend interface fun with non-nullable return type()122 assertThat(method.kotlinLikeDescription()) in Test suspend interface fun with primitive nullable return type()143 assertThat(method.kotlinLikeDescription()) in Test suspend interface fun with primitive return type()162 assertThat(method.kotlinLikeDescription()) in Test suspend inline fun with reified type()
80 .map { it.kotlinLikeDescription() } in Test data class methods and constructors()112 assertThat(constructor.kotlinLikeDescription()) in Test data class constructor()127 assertThat(method.kotlinLikeDescription()) in Test data class copy method()142 assertThat(method.kotlinLikeDescription()).isEqualTo("fun getOpt(): java.lang.String?") in Test data class getter method()154 assertThat(method.kotlinLikeDescription()) in Test data class setter method()176 .map { it.kotlinLikeDescription() }) in Test generic data class all members()
1313 assertEquals("fun foo(): void", inheritedMethod.kotlinLikeDescription()) in Test inheritMethodFromNonApiAncestor without type substitutions()
223 assertThat(getter.kotlinLikeDescription()) in Test abstract property of non-null string()248 assertThat(getter.kotlinLikeDescription()) in Test abstract property of nullable string()274 assertThat(getter.kotlinLikeDescription()) in Test abstract property of list of non-null string()300 assertThat(getter.kotlinLikeDescription()) in Test abstract property of list of nullable string()326 fooClass.methods().map { it.kotlinLikeDescription() }.sorted().joinToString("\n") in Test abstract mutable property of non-null string()359 fooClass.methods().map { it.kotlinLikeDescription() }.sorted().joinToString("\n") in Test abstract mutable property of nullable string()393 fooClass.methods().map { it.kotlinLikeDescription() }.sorted().joinToString("\n") in Test abstract mutable property of list of non-null string()427 fooClass.methods().map { it.kotlinLikeDescription() }.sorted().joinToString("\n") in Test abstract mutable property of list of nullable string()461 fooClass.methods().map { it.kotlinLikeDescription() }.sorted().joinToString("\n") in Test mutable non-null generic property overriding property exposing public setter()495 fooClass.methods().map { it.kotlinLikeDescription() }.sorted().joinToString("\n") in Test mutable nullable generic property overriding property exposing public setter()[all …]
45 assertThat(method.kotlinLikeDescription()) in Test typealias of generic type()
127 fun MethodItem.kotlinLikeDescription(): String = buildString { in <lambda>() method