Skip to content

Instantly share code, notes, and snippets.

View cortinico's full-sized avatar
♦️
Reticulating splines...

Nicola Corti cortinico

♦️
Reticulating splines...
View GitHub Profile
class RetentionManager {
internal fun doMaintenance()
}
compileOptions {
kotlinOptions.freeCompilerArgs += ['-module-name', "com.github.ChuckerTeam.Chucker.library"]
}
new UserInterface().deleteUsers$library();
new UserInterface().deleteUsers$library();
public final class UserDatabase {
public final void deleteUsers$library() {
}
}
// inside the module named `library`
class UserDatabase {
internal fun deleteUsers()
}
public final void validate(@NotNull String password) {
...
}
public final void validate_3mN7H_Y/* $FF was: validate-3mN7H-Y*/(@NotNull String password) {
...
}
fun validate(password: String)
fun validate(password: Password)
inline class Username(val value: String)
inline class Password(val value: String)
fun login(username: Username, password: Password)
fun login(username: String, password: String)