Add ir interpreter tests

This commit is contained in:
Ivan Kylchik
2021-05-19 16:27:03 +03:00
committed by TeamCityServer
parent cc2d7340dc
commit e28ab45c51
115 changed files with 5104 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
import kotlin.*
import kotlin.collections.*
@CompileTimeCalculation
class A(var num: Int, var str: String) {
fun setNewStr(newString: String) {
this.str = newString
}
}
@CompileTimeCalculation
fun <T> echo(value: T): T = value
const val a = <!EVALUATED: `Run block`!>run { echo("Run block") }<!>
const val b = A(0, "Run with receiver").<!EVALUATED: `Run with receiver0`!>run { this.str + this.num }<!>
const val c = <!EVALUATED: `New String`!>with (A(1, "String")) {
setNewStr("New String")
this.str
}<!>
const val d = A(2, "Apply test").apply { this.setNewStr("New apply str") }.<!EVALUATED: `New apply str`!>str<!>
const val e = mutableListOf("one", "two", "three").also { it.add("four") }.<!EVALUATED: `4`!>size<!>
const val f1 = mutableListOf("one", "two", "three").<!EVALUATED: `4`!>let {
it.add("four")
it.size
}<!>
const val f2 = 10.<!EVALUATED: `20`!>let { it + 10 }<!>
const val g1 = 1.takeIf { it % 2 == 0 }.<!EVALUATED: `null`!>toString()<!>
const val g2 = 2.takeIf { it % 2 == 0 }.<!EVALUATED: `2`!>toString()<!>
const val h1 = (-1).takeUnless { it > 0 }.<!EVALUATED: `-1`!>toString()<!>
const val h2 = 1.takeUnless { it > 0 }.<!EVALUATED: `null`!>toString()<!>