You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`* What went wrong:
Execution failed for task ':basis:kspCommonMainKotlinMetadata'.
A failure occurred while executing org.jetbrains.kotlin.compilerRunner.GradleCompilerRunnerWithWorkers$GradleKotlinCompilerWorkAction
Compilation error. See log for more details
`
Behavior:
` @OptIn(KspExperimental::class)
override fun process(resolver: Resolver): List {
val moduleName = resolver.getModuleName().getShortName()
.run { substringBefore('_', this) }
logger.warn("detected AsyncDI annotations in $moduleName ")
... this first call works.
Calling it inside another function, and this call crashes the compiler runner:
` @OptIn(KspExperimental::class)
internal fun validateOnceScopes(
resolver: Resolver,
logger: KSPLogger,
): List {
val a = resolver.getModuleName()
logger.error("$a")
`
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
ksp = '2.0.21-1.0.25'
`* What went wrong:
Execution failed for task ':basis:kspCommonMainKotlinMetadata'.
Behavior:
` @OptIn(KspExperimental::class)
override fun process(resolver: Resolver): List {
... this first call works.
Calling it inside another function, and this call crashes the compiler runner:
`
@OptIn(KspExperimental::class)
internal fun validateOnceScopes(
resolver: Resolver,
logger: KSPLogger,
): List {
val a = resolver.getModuleName()
logger.error("$a")
`
The text was updated successfully, but these errors were encountered: