fun finalize()

in runner/src/main/kotlin/org/jetbrains/idea/inspections/ProxyRunnerImpl.kt [37:45]


    fun finalize() {
        try {
            runner.finalize()
            connection.write(Connection.Type.SlaveOut.VALUE, RunnerOutcome.SUCCESS.toJson())
        } catch (ex: Throwable) {
            logger.exception(ex)
            connection.write(Connection.Type.SlaveOut.VALUE, RunnerOutcome.CRASH.toJson())
        }
    }