source
stringlengths
13
1.73k
decompiled
stringlengths
17
2.86k
val _counter = MutableStateFlow(a) val counter = _counter.asStateFlow() fun inc() { _counter.update { count -> count + 1 } }
Object valueOf = Integer.valueOf(i5); if (valueOf == null) { valueOf = androidx.activity.m.f76m; } new r(valueOf);
annotation class Suspendable val f = @Suspendable { println("well") }
public @interface Suspendable { }
class TownSquare : Room("Town Square") { override val dangerLevel = super.dangerLevel - 3 private var bellSound = "GWONG" override fun load() = "The villagers rally and cheer as you enter!\n${ringBell()}" private fun ringBell() = "The bell tower announces your arrival. $bellSound" }
public final class TownSquare extends Room { public final int c; public String f3583d; public TownSquare() { super("Town Square"); this.c = super.getDangerLevel() - 3; this.f3583d = "GWONG"; } @Override public int getDangerLevel() { return this.c; } ...
data class User(val name: String, val age: Int)
public final class User { public final String f3584a; public final int f3585b; public User(String str, int i5) { i.e("name", str); this.f3584a = str; this.f3585b = i5; } public static User copy$default(User user, String str, int i5, int i6, Object obj) { ...
class Version(val major: Int, val minor: Int): Comparable<Version> { override fun compareTo(other: Version): Int { if (this.major != other.major) { return this.major - other.major } return this.minor - other.minor } }
public final class Version implements Comparable<Version> { public final int f3586a; public final int f3587b; public Version(int i5, int i6) { this.f3586a = i5; this.f3587b = i6; } public final int getMajor() { return this.f3586a; } public final int get...