Fix LVT entries of 'this' and parameters in coroutine code

#KT-24510 Fixed
This commit is contained in:
Ilmir Usmanov
2018-09-13 20:42:26 +03:00
parent 2dd5b8fa70
commit 35056543a2
4 changed files with 77 additions and 22 deletions
@@ -1156,6 +1156,11 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
public void testProbeCoroutineSuspended() throws Exception {
runTest("compiler/testData/codegen/bytecodeText/coroutines/debug/probeCoroutineSuspended.kt");
}
@TestMetadata("thisAndResultInLvt.kt")
public void testThisAndResultInLvt() throws Exception {
runTest("compiler/testData/codegen/bytecodeText/coroutines/debug/thisAndResultInLvt.kt");
}
}
@TestMetadata("compiler/testData/codegen/bytecodeText/coroutines/destructuringInLambda")