improve errors generated for undefined symbols

This commit is contained in:
Irmen de Jong
2023-06-25 15:19:51 +02:00
parent e9163aa3a7
commit eae41de27d
10 changed files with 50 additions and 36 deletions
@@ -3,6 +3,7 @@ package prog8.code.core
interface IErrorReporter {
fun err(msg: String, position: Position)
fun warn(msg: String, position: Position)
fun undefined(symbol: List<String>, position: Position)
fun noErrors(): Boolean
fun report()
fun finalizeNumErrors(numErrors: Int, numWarnings: Int) {