[JS IR BE] Don't transform toString with extension receiver

This commit is contained in:
Svyatoslav Kuzmich
2019-05-19 20:05:53 +03:00
parent 3153a7dd7e
commit e9ceee388e
4 changed files with 26 additions and 10 deletions
@@ -6805,6 +6805,11 @@ public class IrBoxJsTestGenerated extends AbstractIrBoxJsTest {
public void testTaggedArrayCopy() throws Exception {
runTest("js/js.translator/testData/box/regression/typeChecks/taggedArrayCopy.kt");
}
@TestMetadata("toStringExtension.kt")
public void testToStringExtension() throws Exception {
runTest("js/js.translator/testData/box/regression/typeChecks/toStringExtension.kt");
}
}
}
@@ -6840,6 +6840,11 @@ public class BoxJsTestGenerated extends AbstractBoxJsTest {
public void testTaggedArrayCopy() throws Exception {
runTest("js/js.translator/testData/box/regression/typeChecks/taggedArrayCopy.kt");
}
@TestMetadata("toStringExtension.kt")
public void testToStringExtension() throws Exception {
runTest("js/js.translator/testData/box/regression/typeChecks/toStringExtension.kt");
}
}
}