Home
last modified time | relevance | path

Searched refs:stringToOpen (Results 1 – 5 of 5) sorted by relevance

/appfunctions/appfunctions-compiler/src/test/test-data/input/
DDerivedSerializable.KT8 public val stringToOpen: String constant
12 override val stringToOpen: String constant
18 override val stringToOpen: String, constant in com.testdata.LongBaseSerializable
23 override val stringToOpen: String, constant in com.testdata.DerivedSerializable
25 ) : LongBaseSerializable(age, stringToOpen)
DSubClassRenamedCapabilityProperty.KT8 public val stringToOpen: String constant
/appfunctions/appfunctions-compiler/src/test/test-data/output/
D$StringBaseSerializableFactory.KT11 val stringToOpen = checkNotNull(appFunctionData.getString("stringToOpen")) in fromAppFunctionData() constant
13 return StringBaseSerializable(stringToOpen) in fromAppFunctionData()
19 val stringToOpen = appFunctionSerializable.stringToOpen in toAppFunctionData() constant
20 builder.setString("stringToOpen", stringToOpen) in toAppFunctionData()
D$LongBaseSerializableFactory.KT12 val stringToOpen = checkNotNull(appFunctionData.getStringOrNull("stringToOpen")) in fromAppFunctionData() constant
14 val resultLongBaseSerializable = LongBaseSerializable(age, stringToOpen) in fromAppFunctionData()
24 val stringToOpen = longBaseSerializable_appFunctionSerializable.stringToOpen in toAppFunctionData() constant
25 builder.setString("stringToOpen", stringToOpen) in toAppFunctionData()
D$DerivedSerializableFactory.KT11 val stringToOpen = checkNotNull(appFunctionData.getStringOrNull("stringToOpen")) in fromAppFunctionData() constant
14 val resultDerivedSerializable = DerivedSerializable(stringToOpen, age) in fromAppFunctionData()
22 val stringToOpen = derivedSerializable_appFunctionSerializable.stringToOpen in toAppFunctionData() constant
23 builder.setString("stringToOpen", stringToOpen) in toAppFunctionData()