[K/JS] Generate unstable names on Frontend-checks for declarations with the JsExport.Ignore annotation ^KT-60202 Fixed

This commit is contained in:
Artem Kobzar
2023-07-24 09:52:58 +00:00
committed by Space Team
parent 8ce1417621
commit 53aa8eddfe
5 changed files with 71 additions and 0 deletions
@@ -514,6 +514,12 @@ public class DiagnosticsTestWithJsStdLibGenerated extends AbstractDiagnosticsTes
public void testWrongExportedDeclarationInExportedFile() throws Exception {
runTest("compiler/testData/diagnostics/testsWithJsStdLib/export/wrongExportedDeclarationInExportedFile.kt");
}
@Test
@TestMetadata("wrongExportedDeclarationInExportedFileWhenIgnored.kt")
public void testWrongExportedDeclarationInExportedFileWhenIgnored() throws Exception {
runTest("compiler/testData/diagnostics/testsWithJsStdLib/export/wrongExportedDeclarationInExportedFileWhenIgnored.kt");
}
}
@Nested