File tree Expand file tree Collapse file tree 3 files changed +20
-2
lines changed
js.tests/test/org/jetbrains/kotlin/js/test/semantics
js.translator/testData/box/native Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change @@ -5957,7 +5957,13 @@ public void testPassExtLambdaFromNative() throws Exception {
5957
5957
@ TestMetadata ("passExtLambdaToNative.kt" )
5958
5958
public void testPassExtLambdaToNative () throws Exception {
5959
5959
String fileName = KotlinTestUtils .navigationMetadata ("js/js.translator/testData/box/native/passExtLambdaToNative.kt" );
5960
- doTest (fileName );
5960
+ try {
5961
+ doTest (fileName );
5962
+ }
5963
+ catch (Throwable ignore ) {
5964
+ return ;
5965
+ }
5966
+ throw new AssertionError ("Looks like this test can be unmuted. Remove IGNORE_BACKEND directive for that." );
5961
5967
}
5962
5968
5963
5969
@ TestMetadata ("passMemberOrExtFromNative.kt" )
@@ -5969,7 +5975,13 @@ public void testPassMemberOrExtFromNative() throws Exception {
5969
5975
@ TestMetadata ("passMemberOrExtToNative.kt" )
5970
5976
public void testPassMemberOrExtToNative () throws Exception {
5971
5977
String fileName = KotlinTestUtils .navigationMetadata ("js/js.translator/testData/box/native/passMemberOrExtToNative.kt" );
5972
- doTest (fileName );
5978
+ try {
5979
+ doTest (fileName );
5980
+ }
5981
+ catch (Throwable ignore ) {
5982
+ return ;
5983
+ }
5984
+ throw new AssertionError ("Looks like this test can be unmuted. Remove IGNORE_BACKEND directive for that." );
5973
5985
}
5974
5986
5975
5987
@ TestMetadata ("passTopLevelFunctionFromNative.kt" )
Original file line number Diff line number Diff line change
1
+ // TODO: Unmute when extension functions are supported in external declarations.
2
+ // IGNORE_BACKEND: JS
3
+
1
4
package foo
2
5
3
6
external class A (v : String ) {
Original file line number Diff line number Diff line change
1
+ // TODO: Unmute when extension functions are supported in external declarations.
2
+ // IGNORE_BACKEND: JS
3
+
1
4
package foo
2
5
3
6
open class A (val v : String ) {
You can’t perform that action at this time.
0 commit comments