[Wasm] Move FirJsQualifierChecker to web.common and reuse in Wasm

#KT-56849
This commit is contained in:
Svyatoslav Kuzmich
2023-11-21 13:09:09 +01:00
committed by Space Team
parent 640bf67480
commit d219d5380b
14 changed files with 57 additions and 9 deletions
@@ -122,6 +122,12 @@ public class DiagnosticsFirWasmTestGenerated extends AbstractDiagnosticsFirWasmT
public void testTypes() throws Exception {
runTest("compiler/testData/diagnostics/wasmTests/jsInterop/types.kt");
}
@Test
@TestMetadata("wrongQualifier.kt")
public void testWrongQualifier() throws Exception {
runTest("compiler/testData/diagnostics/wasmTests/jsInterop/wrongQualifier.kt");
}
}
@Nested
@@ -122,6 +122,12 @@ public class DiagnosticsWasmTestGenerated extends AbstractDiagnosticsWasmTest {
public void testTypes() throws Exception {
runTest("compiler/testData/diagnostics/wasmTests/jsInterop/types.kt");
}
@Test
@TestMetadata("wrongQualifier.kt")
public void testWrongQualifier() throws Exception {
runTest("compiler/testData/diagnostics/wasmTests/jsInterop/wrongQualifier.kt");
}
}
@Nested