hm, will try to narrow it down more sometime later...
# ksp
e
hm, will try to narrow it down more sometime later, but getting an error type somewhere just on js, can reproduce by running
./gradlew jsTest
from the
ksp-js
branch https://github.com/evant/kotlin-inject/tree/ksp-js
j
can you also file an issue for this? Thanks
e
ah it was caused by referencing a java class which obviously wouldn't exist, goes to show I need better handling of error types I guess.
alright now only a single test is failing, will investigate
ok figured it out, had nothing to do with ksp. It was a problem with kotlin js's looser type checking. Had 2 objects of different types which compared not equal on the jvm but were equal on js.
so yeah got 100% tests passing now, that's a real good sign that ksp is working great on js!
j
👍