Home
last modified time | relevance | path

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

/aosp_15_r20/external/moshi/moshi-kotlin/src/main/java/com/squareup/moshi/kotlin/reflect/
H A DKotlinJsonAdapter.kt214 val rawTypeKotlin = rawType.kotlin in create() constant
215 require(!rawTypeKotlin.isAbstract) { in create()
218 require(!rawTypeKotlin.isInner) { in create()
221 require(rawTypeKotlin.objectInstance == null) { in create()
224 require(!rawTypeKotlin.isSealed) { in create()
228 val constructor = rawTypeKotlin.primaryConstructor ?: return null in create()
234 for (property in rawTypeKotlin.memberProperties) { in create()