Home
last modified time | relevance | path

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

/appfunctions/appfunctions-compiler/src/test/test-data/input/
DNestedDerivedSerializableOutputFunctions.KT8 fun simpleFunction(appFunctionContext: AppFunctionContext): NestedDerivedSerializable { in simpleFunction()
9 return NestedDerivedSerializable("testValue", null, 2, null) in simpleFunction()
15 ): List<NestedDerivedSerializable> { in simpleFunctionSerializableList()
16 return listOf(NestedDerivedSerializable("testValue", null, 2, null)) in simpleFunctionSerializableList()
DNestedDerivedSerializableInputFunctions.KT10 serializable: NestedDerivedSerializable in functionWithDerivedSerializable()
16 serializable: List<NestedDerivedSerializable>, in functionWithDerivedSerializableList()
DNestedDerivedSerializable.KT19 class NestedDerivedSerializable( class
23 val nestedDerived: NestedDerivedSerializable?,
/appfunctions/appfunctions-compiler/src/test/test-data/output/
D$NestedDerivedSerializableFactory.KT8 …s `$NestedDerivedSerializableFactory` : AppFunctionSerializableFactory<NestedDerivedSerializable> {
9 override fun fromAppFunctionData(appFunctionData: AppFunctionData): NestedDerivedSerializable { in fromAppFunctionData()
21 var nestedDerived: NestedDerivedSerializable? = null in fromAppFunctionData()
26 …val resultNestedDerivedSerializable = NestedDerivedSerializable(stringBaseName, nestedBase, longBa… in fromAppFunctionData()
30 …override fun toAppFunctionData(appFunctionSerializable: NestedDerivedSerializable): AppFunctionDat… in toAppFunctionData()