fix tests in org.jetbrains.kotlin.idea.decompiler.textBuilder
This commit is contained in:
@@ -3,22 +3,22 @@
|
||||
|
||||
package test
|
||||
|
||||
internal final class ClassWithClassObject public constructor() {
|
||||
public final class ClassWithClassObject public constructor() {
|
||||
public companion object {
|
||||
internal final val a: test.A /* compiled code */
|
||||
public final val a: test.A /* compiled code */
|
||||
|
||||
public final var b: test.B /* compiled code */
|
||||
|
||||
internal final val kotlin.Int.g: kotlin.Int /* compiled code */
|
||||
public final val kotlin.Int.g: kotlin.Int /* compiled code */
|
||||
|
||||
internal final fun <T, K, G> complexFun(a: T, b: K, c: G): G { /* compiled code */ }
|
||||
public final fun <T, K, G> complexFun(a: T, b: K, c: G): G { /* compiled code */ }
|
||||
|
||||
internal final fun f(): kotlin.Unit { /* compiled code */ }
|
||||
public final fun f(): kotlin.Unit { /* compiled code */ }
|
||||
|
||||
private final fun privateFun(): kotlin.Unit { /* compiled code */ }
|
||||
|
||||
internal final fun kotlin.Int.f(): kotlin.Unit { /* compiled code */ }
|
||||
public final fun kotlin.Int.f(): kotlin.Unit { /* compiled code */ }
|
||||
}
|
||||
|
||||
internal final fun f(): kotlin.Unit { /* compiled code */ }
|
||||
}
|
||||
public final fun f(): kotlin.Unit { /* compiled code */ }
|
||||
}
|
||||
Reference in New Issue
Block a user