-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix incorrect filtering for `fixPrivateTypeParametersSymbolsFromOldKL…
…ibs`.
- Loading branch information
1 parent
c915a55
commit 5e6ad3f
Showing
4 changed files
with
19 additions
and
2 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
.../kotlin/co/touchlab/skie/kir/irbuilder/impl/IrTypeParameterSymbol+isPublicSymbol_1.8.0.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package co.touchlab.skie.kir.irbuilder.impl | ||
|
||
import org.jetbrains.kotlin.ir.symbols.IrTypeParameterSymbol | ||
import org.jetbrains.kotlin.ir.symbols.impl.IrTypeParameterPublicSymbolImpl | ||
|
||
actual val IrTypeParameterSymbol.isPublicSymbol: Boolean | ||
get() = this is IrTypeParameterPublicSymbolImpl |
6 changes: 6 additions & 0 deletions
6
...kotlin/co/touchlab/skie/kir/irbuilder/impl/IrTypeParameterSymbol+isPublicSymbol_2.0.20.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package co.touchlab.skie.kir.irbuilder.impl | ||
|
||
import org.jetbrains.kotlin.ir.symbols.IrTypeParameterSymbol | ||
|
||
actual val IrTypeParameterSymbol.isPublicSymbol: Boolean | ||
get() = signature != null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
...common/kotlin/co/touchlab/skie/kir/irbuilder/impl/IrTypeParameterSymbol+isPublicSymbol.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package co.touchlab.skie.kir.irbuilder.impl | ||
|
||
import org.jetbrains.kotlin.ir.symbols.IrTypeParameterSymbol | ||
|
||
expect val IrTypeParameterSymbol.isPublicSymbol: Boolean |