Marco Pinedo
Marco Pinedo
I have the next piece of code for testing: ``` class Listener : NativeKeyListener { var isAlive = true var flag = 0x00 private val SUPER_MASK = 1 private val...
I am not sure if this is intentional or not, but in Compose for Desktop, I have a little set up for testing: ``` private data class Window1( val applicationScope:...
I've encountered a weird behavior when separating my dependencies into different modules. First, I had all my dependencies into one module: ``` val module = module { //Initializables single(named(NamedDependencies.SqliteDb)) {...
Let's say I have the following sealed hierarchy: ``` sealed interface UserErrors: Error { data object UserNotFound: UserErrors data object PasswordTooShort: UserErrors } ``` And the following helper types representing...