mirror of
https://github.com/irmen/prog8.git
synced 2024-11-07 22:09:01 +00:00
1110bd0851
(this causes the optimized assignment code gen to be used instead) but some programs now end up larger in output size
31 lines
957 B
Kotlin
31 lines
957 B
Kotlin
package prog8tests.asmgen.helpers
|
|
|
|
import prog8.ast.base.Position
|
|
import prog8.compilerinterface.IErrorReporter
|
|
|
|
internal 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() {
|
|
warnings.forEach { println("UNITTEST COMPILATION REPORT: WARNING: $it") }
|
|
errors.forEach { println("UNITTEST COMPILATION REPORT: ERROR: $it") }
|
|
if(throwExceptionAtReportIfErrors)
|
|
finalizeNumErrors(errors.size, warnings.size)
|
|
errors.clear()
|
|
warnings.clear()
|
|
}
|
|
}
|