FIR: temporary implementation of kotlin.FunctionX resolve

This commit is contained in:
Mikhail Glukhikh
2018-04-10 15:08:28 +03:00
parent 82ae3f8f10
commit 5cdf938902
5 changed files with 31 additions and 3 deletions
+5
View File
@@ -0,0 +1,5 @@
import kotlin.jvm.functions.Function0
val x: Function0<Int> = { 42 }
val y: Function1<String, String> = { it }
+5
View File
@@ -0,0 +1,5 @@
FILE: functionX.kt
public? final? property x(val): R|kotlin/jvm/functions/Function0<kotlin/Int>| = STUB
public? get(): R|kotlin/jvm/functions/Function0<kotlin/Int>|
public? final? property y(val): R|kotlin/Function1<kotlin/String, kotlin/String>| = STUB
public? get(): R|kotlin/Function1<kotlin/String, kotlin/String>|