2021-10-11 19:20:57 +00:00
|
|
|
package prog8tests.helpers
|
|
|
|
|
|
|
|
import prog8.ast.base.Position
|
2021-10-29 00:42:10 +00:00
|
|
|
import prog8.compilerinterface.IErrorReporter
|
2021-10-11 19:20:57 +00:00
|
|
|
|
2021-10-29 14:46:56 +00:00
|
|
|
internal class ErrorReporterForTests(private val throwExceptionAtReportIfErrors: Boolean=true): IErrorReporter {
|
2021-10-11 19:20:57 +00:00
|
|
|
|
|
|
|
val errors = mutableListOf<String>()
|
|
|
|
val warnings = mutableListOf<String>()
|
|
|
|
|
|
|
|
override fun err(msg: String, position: Position) {
|
2021-10-24 17:09:44 +00:00
|
|
|
errors.add("${position.toClickableStr()} $msg")
|
2021-10-11 19:20:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
override fun warn(msg: String, position: Position) {
|
2021-10-24 17:09:44 +00:00
|
|
|
warnings.add("${position.toClickableStr()} $msg")
|
2021-10-11 19:20:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
override fun noErrors(): Boolean = errors.isEmpty()
|
|
|
|
|
|
|
|
override fun report() {
|
2021-10-31 23:24:15 +00:00
|
|
|
warnings.forEach { println("UNITTEST COMPILATION REPORT: WARNING: $it") }
|
|
|
|
errors.forEach { println("UNITTEST COMPILATION REPORT: ERROR: $it") }
|
2021-10-21 23:25:26 +00:00
|
|
|
if(throwExceptionAtReportIfErrors)
|
|
|
|
finalizeNumErrors(errors.size, warnings.size)
|
2021-10-11 19:20:57 +00:00
|
|
|
errors.clear()
|
|
|
|
warnings.clear()
|
|
|
|
}
|
|
|
|
}
|