org.jetbrains.kotlin.diagnostics.DiagnosticReporterFactory.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-compiler-embeddable Show documentation
Show all versions of kotlin-compiler-embeddable Show documentation
the Kotlin compiler embeddable
The newest version!
/*
* Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.diagnostics
import org.jetbrains.kotlin.cli.common.messages.MessageCollector
import org.jetbrains.kotlin.diagnostics.impl.BaseDiagnosticsCollector
import org.jetbrains.kotlin.diagnostics.impl.BaseDiagnosticsCollector.RawReporter
import org.jetbrains.kotlin.diagnostics.impl.PendingDiagnosticsCollectorWithSuppress
import org.jetbrains.kotlin.diagnostics.impl.SimpleDiagnosticsCollector
import org.jetbrains.kotlin.diagnostics.impl.SimpleDiagnosticsCollectorWithSuppress
object DiagnosticReporterFactory {
fun createReporter(rawReporter: RawReporter, disableSuppress: Boolean = false): BaseDiagnosticsCollector {
return if (disableSuppress) {
SimpleDiagnosticsCollector(rawReporter)
} else {
SimpleDiagnosticsCollectorWithSuppress(rawReporter)
}
}
fun createReporter(messageCollector: MessageCollector, disableSuppress: Boolean = false): BaseDiagnosticsCollector {
val rawReporter = RawReporter { message, severity ->
messageCollector.report(severity, message)
}
return createReporter(rawReporter)
}
fun createPendingReporter(rawReporter: RawReporter): PendingDiagnosticsCollectorWithSuppress {
return PendingDiagnosticsCollectorWithSuppress(rawReporter)
}
fun createPendingReporter(messageCollector: MessageCollector): PendingDiagnosticsCollectorWithSuppress {
return createPendingReporter { message, severity ->
messageCollector.report(severity, message)
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy