Never treat @JsExport-annotated declarations as not-used instead of @JsName

This commit is contained in:
Yan Zhulanow
2020-03-05 20:41:25 +09:00
parent ef698a5747
commit b756e18962
3 changed files with 5 additions and 5 deletions
@@ -13531,9 +13531,9 @@ public class LocalInspectionTestGenerated extends AbstractLocalInspectionTest {
runTest("idea/testData/inspectionsLocal/unusedSymbol/internal.kt");
}
@TestMetadata("jsName.kt")
public void testJsName() throws Exception {
runTest("idea/testData/inspectionsLocal/unusedSymbol/jsName.kt");
@TestMetadata("jsExport.kt")
public void testJsExport() throws Exception {
runTest("idea/testData/inspectionsLocal/unusedSymbol/jsExport.kt");
}
@TestMetadata("propertyOfInlineClassType.kt")