[FIR] Render diagnostics parameters instead of full text in debug messages (closer to old tests)

This commit is contained in:
Ivan Kochurkin
2021-05-20 18:28:50 +03:00
committed by TeamCityServer
parent 6de97e17fe
commit ef53f0e0b3
6 changed files with 23 additions and 6 deletions
@@ -9,4 +9,6 @@ import org.jetbrains.kotlin.diagnostics.UnboundDiagnostic
interface DiagnosticRenderer<in D : UnboundDiagnostic> {
fun render(diagnostic: D): String
fun renderParameters(diagnostic: D): Array<out Any?>
}