Skip to content

Commit

Permalink
[Tests] Reproduce #KT-70901
Browse files Browse the repository at this point in the history
  • Loading branch information
cypressious authored and qodana-bot committed Aug 23, 2024
1 parent 1163b44 commit 8f0b2b7
Show file tree
Hide file tree
Showing 8 changed files with 64 additions and 0 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
@PublishedApi
internal interface History<T> {
var isIgnoringPlatformChanges: Boolean
}

@PublishedApi
internal class VirtueNavControllerImpl<R>(
@PublishedApi internal val history: History<R>
) {
@PublishedApi
internal <!NOTHING_TO_INLINE!>inline<!> fun syncWithHistory() {
history.<!NON_PUBLIC_CALL_FROM_PUBLIC_INLINE!>isIgnoringPlatformChanges<!> = true
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
@PublishedApi
internal interface History<T> {
var isIgnoringPlatformChanges: Boolean
}

@PublishedApi
internal class VirtueNavControllerImpl<R>(
@PublishedApi internal val history: History<R>
) {
@PublishedApi
internal <!NOTHING_TO_INLINE!>inline<!> fun syncWithHistory() {
history.isIgnoringPlatformChanges = true
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8f0b2b7

Please sign in to comment.