Fix interpreter tests after changing offset calculation

This commit is contained in:
Ilya Chernikov
2022-03-14 15:43:37 +01:00
committed by teamcity
parent 738c1f34df
commit 53bc593062
71 changed files with 359 additions and 355 deletions
+2 -2
View File
@@ -47,8 +47,8 @@ fun getNumAfterLocalInvoke(): Int {
return a
}
const val a = returnTheSameValueFun(2).<!EVALUATED: `2`!>invoke()<!>
const val b = multiplyByTwo(1).<!EVALUATED: `2`!>invoke()<!>
const val a = <!EVALUATED: `2`!>returnTheSameValueFun(2).invoke()<!>
const val b = <!EVALUATED: `2`!>multiplyByTwo(1).invoke()<!>
const val c = <!EVALUATED: `5`!>checkStackCorrectness()<!>
const val d = <!EVALUATED: `previous = 10; multiplied by two = 20; b = 0`!>checkLaterInvoke()<!>
const val e = <!EVALUATED: `result = 8; (a, b) = (10, 20)`!>localInline()<!>