Hello! I'm trying to export Kdoc comments to iOS side with compiler argument
-Xexport-kdoc
in multiplatform project, but I get strange output for
data class
. Details in ๐งต
rudolf.hladik
06/26/2024, 1:33 PM
I have basic data class:
Copy code
/**
* This is test data class to test the output of exported Kdocs to iOS side
*/
data class TestKdocExportHolder(
/**
* Basic text field
*/
val text: String,
/**
* Basic integer field
*/
val number: Int,
)
rudolf.hladik
06/26/2024, 1:34 PM
And the output on ios side:
rudolf.hladik
06/26/2024, 1:36 PM
What seems strange to me is that the
Basic text field
and
Basic integer field
comments do not correlate to corresponding property definitions.