mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-14 00:21:34 +00:00
Because .kjsm files now contain all declarations from the package (contrary to the JVM decompiler which produces one file for one class/package facade), some common decompiled text tests started to behave differently on JVM and JS. Update two of them (Modifiers, ClassWithClassObject) to make results the same, copy another (TypeAliases) to JVM-/JS-specific tests with different outputs
18 lines
673 B
Kotlin
Vendored
18 lines
673 B
Kotlin
Vendored
// IntelliJ API Decompiler stub source generated from a class file
|
|
// Implementation of methods is not available
|
|
|
|
package test
|
|
|
|
public final data class Modifiers public constructor(x: kotlin.Int) {
|
|
public final val x: kotlin.Int /* compiled code */
|
|
|
|
public final operator fun component1(): kotlin.Int { /* compiled code */ }
|
|
|
|
public final inline fun inlined(crossinline arg1: () -> kotlin.Unit, noinline arg2: () -> kotlin.Unit): kotlin.Unit { /* compiled code */ }
|
|
|
|
public final tailrec fun sum(x: kotlin.Long, sum: kotlin.Long): kotlin.Long { /* compiled code */ }
|
|
|
|
public final annotation class Ann public constructor() : kotlin.Annotation {
|
|
}
|
|
}
|