io.github.kyay10.kotlinnulldefaults.utils.MutableDiagnostics.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-plugin Show documentation
Show all versions of kotlin-plugin Show documentation
A Kotlin compiler plugin that allows Java callers to pass in null for default parameters
The newest version!
@file:Suppress("unused")
package io.github.kyay10.kotlinnulldefaults.utils
import org.jetbrains.kotlin.resolve.DelegatingBindingTrace
import org.jetbrains.kotlin.resolve.MutableDiagnosticsUtils
import org.jetbrains.kotlin.resolve.diagnostics.MutableDiagnosticsWithSuppression
val DelegatingBindingTrace.mutableDiagnostics: MutableDiagnosticsWithSuppression
get() = MutableDiagnosticsUtils.getMutableDiagnosticsFromTrace(
this
)