Skip to content

Commit

Permalink
Minor. Update ticket number in comments: KT-67304 -> KT-70295
Browse files Browse the repository at this point in the history
  • Loading branch information
ddolovov authored and qodana-bot committed Sep 5, 2024
1 parent 4e03d54 commit 0a833b0
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// IGNORE_BACKEND: JS_IR
// ^^^ This test fails due to visibility violation on access to JS `internal` intrinsic functions
// `kotlin.sharedBoxCreate`, `kotlin.sharedBoxRead` and `kotlin.sharedBoxWrite`. To be fixed in KT-67304.
// `kotlin.sharedBoxCreate`, `kotlin.sharedBoxRead` and `kotlin.sharedBoxWrite`. To be fixed in KT-70295.

// FILE: A.kt
fun wrapper(block: () -> Unit) { block() }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// IGNORE_BACKEND: JS_IR
// ^^^ This test fails due to visibility violation on access to JS `internal` intrinsic functions
// `kotlin.sharedBoxCreate`, `kotlin.sharedBoxRead` and `kotlin.sharedBoxWrite`. To be fixed in KT-67304.
// `kotlin.sharedBoxCreate`, `kotlin.sharedBoxRead` and `kotlin.sharedBoxWrite`. To be fixed in KT-70295.
// WITH_COROUTINES

// FILE: a.kt
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// IGNORE_BACKEND: JS_IR
// ^^^ This test fails due to visibility violation on access to JS `internal` intrinsic functions
// `kotlin.sharedBoxCreate`, `kotlin.sharedBoxRead` and `kotlin.sharedBoxWrite`. To be fixed in KT-67304.
// `kotlin.sharedBoxCreate`, `kotlin.sharedBoxRead` and `kotlin.sharedBoxWrite`. To be fixed in KT-70295.

// MODULE: lib
// FILE: A.kt
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// IGNORE_BACKEND: JS_IR
// ^^^ This test fails due to visibility violation on access to JS `internal` intrinsic functions
// `kotlin.sharedBoxCreate`, `kotlin.sharedBoxRead` and `kotlin.sharedBoxWrite`. To be fixed in KT-67304.
// `kotlin.sharedBoxCreate`, `kotlin.sharedBoxRead` and `kotlin.sharedBoxWrite`. To be fixed in KT-70295.
// WITH_COROUTINES

// MODULE: lib
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// IGNORE_BACKEND: JS_IR
// ^^^ This test fails due to visibility violation on access to JS `internal` intrinsic functions
// `kotlin.sharedBoxCreate`, `kotlin.sharedBoxRead` and `kotlin.sharedBoxWrite`. To be fixed in KT-67304.
// `kotlin.sharedBoxCreate`, `kotlin.sharedBoxRead` and `kotlin.sharedBoxWrite`. To be fixed in KT-70295.

fun wrapper(block: () -> Unit) { block() }

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// IGNORE_BACKEND: JS_IR
// ^^^ This test fails due to visibility violation on access to JS `internal` intrinsic functions
// `kotlin.sharedBoxCreate`, `kotlin.sharedBoxRead` and `kotlin.sharedBoxWrite`. To be fixed in KT-67304.
// `kotlin.sharedBoxCreate`, `kotlin.sharedBoxRead` and `kotlin.sharedBoxWrite`. To be fixed in KT-70295.
// WITH_COROUTINES

import kotlin.coroutines.*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ object CodegenTestDirectives : SimpleDirectivesContainer() {
This directive is opt-in rather than opt-out (like $DISABLE_IR_VISIBILITY_CHECKS) because right now most test pass with
visibility checks enabled before lowering, but enabling these checks after inlining by default will cause most tests to fail,
because some lowerings that are run before inlining generate calls to internal intrinsics (KT-67304), and inlining in general may
because some lowerings that are run before inlining generate calls to internal intrinsics (KT-70295), and inlining in general may
cause visibility violations until we start generating synthetic accessors (KT-64865).
""".trimIndent()
)
Expand Down

0 comments on commit 0a833b0

Please sign in to comment.