Home
last modified time | relevance | path

Searched refs:AnotherDiffPackageSerializable (Results 1 – 4 of 4) sorted by relevance

/appfunctions/appfunctions-compiler/src/test/test-data/input/
DAppFunctionWithOutputFromDifferentPackage.KT5 import com.testdata.anotherDifferentPackage.AnotherDiffPackageSerializable
20 ): List<AnotherDiffPackageSerializable> { in functionWithAnotherDiffPackageOutput()
21 return listOf(AnotherDiffPackageSerializable("Test String")) in functionWithAnotherDiffPackageOutput()
DDiffPackageSchemas.KT6 import com.testdata.anotherDifferentPackage.AnotherDiffPackageSerializable
15 inputList: List<AnotherDiffPackageSerializable>, in functionWithDiffPackageInput()
27 ) : List<AnotherDiffPackageSerializable> in functionWithDiffPackageInput()
DAppFunctionWithInputFromDifferentPackage.KT5 import com.testdata.anotherDifferentPackage.AnotherDiffPackageSerializable
14 inputList: List<AnotherDiffPackageSerializable>, in functionWithDiffPackageInput()
DAnotherDiffPackageSerializable.KT5 @AppFunctionSerializable class AnotherDiffPackageSerializable(val stringParam: String) class