mirror of
https://github.com/irmen/prog8.git
synced 2025-02-06 01:30:23 +00:00
29 lines
781 B
Kotlin
29 lines
781 B
Kotlin
package prog8tests.helpers
|
|
|
|
import prog8.ast.base.Position
|
|
import prog8.compilerinterface.IErrorReporter
|
|
|
|
class ErrorReporterForTests(private val throwExceptionAtReportIfErrors: Boolean=true): IErrorReporter {
|
|
|
|
|
|
val errors = mutableListOf<String>()
|
|
val warnings = mutableListOf<String>()
|
|
|
|
override fun err(msg: String, position: Position) {
|
|
errors.add("${position.toClickableStr()} $msg")
|
|
}
|
|
|
|
override fun warn(msg: String, position: Position) {
|
|
warnings.add("${position.toClickableStr()} $msg")
|
|
}
|
|
|
|
override fun noErrors(): Boolean = errors.isEmpty()
|
|
|
|
override fun report() {
|
|
if(throwExceptionAtReportIfErrors)
|
|
finalizeNumErrors(errors.size, warnings.size)
|
|
errors.clear()
|
|
warnings.clear()
|
|
}
|
|
}
|