Home
last modified time | relevance | path

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

/external/dokka/integration/src/main/kotlin/org/jetbrains/dokka/
DReflectDsl.kt10 class CallOrPropAccess(private val receiver: Any?, class
19 operator fun get(s: String): CallOrPropAccess { in get()
26 fun takeIfIsFunc(): CallOrPropAccess? = if (func != null) this else null in takeIfIsFunc()
28 fun takeIfIsProp(): CallOrPropAccess? = if (prop != null) this else null in takeIfIsFunc()
56 operator fun Any.get(s: String): CallOrPropAccess { in get()
58 return CallOrPropAccess(this, clz, s) in get()
61 operator fun Any.get(s: String, clz: Class<*>): CallOrPropAccess { in get()
63 return CallOrPropAccess(this, kclz, s) in get()
66 operator fun Any.get(s: String, clz: KClass<*>): CallOrPropAccess { in get()
67 return CallOrPropAccess(this, clz, s) in get()