Franklin Wang

Results 28 issues of Franklin Wang

Just wondering if you can verify a vararg as an Array? I see you can do: ``` verify { delegate.info(any(), *varargAll { println(it) true }) } ``` But the lambda...

enhancement
important

Say I had this polymorphic type ```kotlin sealed interface SavedListElement : Metadata {} class SavedWorkRef : SavedListElement { override val id: String } class SavedChapterRef : SavedListElement { override val...

Getting this exception when upgrading from 0.8.1 to 0.9.0 on Desktop JVM target ``` Exception in thread "AWT-EventQueue-0" java.lang.NoSuchMethodError: 'void org.kodein.db.model.cache.ModelCache$Entry$Cached.(java.lang.Object, int, int)' at org.kodein.db.impl.model.cache.ModelCacheImpl$getOrRetrieveEntry$1.invoke(ModelCacheImpl.kt:133) at org.kodein.db.impl.model.cache.ModelCacheImpl$getOrRetrieveEntry$1.invoke(ModelCacheImpl.kt:123) at org.kodein.db.impl.model.cache.ModelCacheImpl$getOrRetrieveEntry$2.invoke(ModelCacheImpl.kt:291) at...

Builds on #418 to feed all the queries through `ExecutableNormalizedOperationFactory` and then dump the updated queries back out to use all variables. Not sure when we should merge this, I...

Pending #403 and need to rebase onto master to get Artyom's blueprint changes. Effectively this change uses the more correct way to collect services types that the validation has been...

I think this is ready, but just marking it as a draft because I don't really want to merge this as of yet. It may screw around with the replay...

On a Desktop application on MacOS using ``` plugins { kotlin("jvm") version "1.6.10" id("org.jetbrains.compose") version "1.1.0" } ``` Steps to reproduce 1. Run code 2. Hover over text 3. Wait...

Experimental change for faster introspection by avoiding some of the GraphQL Java execution overhead. Old ``` // Benchmark Mode Cnt Score Error Units // IntrospectionBenchmarkJava.benchMarkAvgTime avgt 20 134.819 ± 5.109...