(labelName)
| 33 | compileResults() |
| 34 | |
| 35 | def referenceNotFoundError(labelName): |
| 36 | print(RED + "\tReference to variable or label not found, " + str(labelName) + ENDCOLOR) |
| 37 | compileResults() |
| 38 | |
| 39 | def unrecognizedError(lineNumber): |
| 40 | print(RED + "\tUnrecognized Instruction, line " + str(lineNumber) + ENDCOLOR) |
no test coverage detected