Files
kotlin-fork/compiler/testData/ir/irText/firProblems/cannotCastToFunction.kt
T
2022-07-12 12:22:34 +00:00

11 lines
388 B
Kotlin
Vendored

open class IrElement
fun IrElement.dumpKotlinLike(options: String = ""): String = "O"
fun IrElement.dump(normalizeNames: Boolean = false, stableOrder: Boolean = false): String = "K"
fun dump(data: IrElement, dumpStrategy: String): String {
val dump: IrElement.() -> String = if (dumpStrategy == "KotlinLike") IrElement::dumpKotlinLike else IrElement::dump
return data.dump()
}