[JS IR] Fix findInterfaceImplementation

isOrOverridesSynthesized uses descriptors which does not work with
wrapped descriptors
This commit is contained in:
Svyatoslav Kuzmich
2020-05-29 17:08:25 +03:00
parent 19219c37b6
commit e9e850ad8f
9 changed files with 70 additions and 12 deletions
@@ -22642,6 +22642,11 @@ public class IrJsCodegenBoxES6TestGenerated extends AbstractIrJsCodegenBoxES6Tes
runTest("compiler/testData/codegen/box/regressions/kt3903.kt");
}
@TestMetadata("kt39088.kt")
public void testKt39088() throws Exception {
runTest("compiler/testData/codegen/box/regressions/kt39088.kt");
}
@TestMetadata("kt4142.kt")
public void testKt4142() throws Exception {
runTest("compiler/testData/codegen/box/regressions/kt4142.kt");
@@ -22697,6 +22697,11 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
runTest("compiler/testData/codegen/box/regressions/kt3903.kt");
}
@TestMetadata("kt39088.kt")
public void testKt39088() throws Exception {
runTest("compiler/testData/codegen/box/regressions/kt39088.kt");
}
@TestMetadata("kt4142.kt")
public void testKt4142() throws Exception {
runTest("compiler/testData/codegen/box/regressions/kt4142.kt");
@@ -22712,6 +22712,11 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest {
runTest("compiler/testData/codegen/box/regressions/kt3903.kt");
}
@TestMetadata("kt39088.kt")
public void testKt39088() throws Exception {
runTest("compiler/testData/codegen/box/regressions/kt39088.kt");
}
@TestMetadata("kt4142.kt")
public void testKt4142() throws Exception {
runTest("compiler/testData/codegen/box/regressions/kt4142.kt");