f9901f6075
For now, JVM and JS backends produce different metadata for package facades (and package parts), and thus different output is expected for JVM and JS decompiler. Split decompiler tests into common (decompiledText), JVM-specific (decompiledTextJvm), and JS-specific (decompiledTextJs) Join them back together if JS backend migrates to JVM-like package model.
11 lines
147 B
Kotlin
Vendored
11 lines
147 B
Kotlin
Vendored
package test
|
|
|
|
fun f() {}
|
|
val p = 3
|
|
private var i = 2
|
|
|
|
fun Int.plus(i: Int = 1) = this + i
|
|
|
|
class ShouldNotBeVisible1
|
|
interface ShouldNotBeVisible2
|