JVM IR: implement MethodSignatureMapper.mapFunctionName directly

This commit is contained in:
Alexander Udalov
2019-08-27 16:29:08 +02:00
parent 36c242764f
commit bd8ea9412d
2 changed files with 63 additions and 7 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
// IGNORE_BACKEND_MULTI_MODULE: JVM_IR
// FILE: 1.kt
package test
class AbstractTreeNode<T>(val value: T, val parent: AbstractTreeNode<T>?)
@@ -24,4 +24,4 @@ import test.*
fun box(): String {
return AbstractTreeNode("OK", null).findNotNullValueOfType<String>()!!
}
}