| 495 | sourceInfo.clear(); |
| 496 | } |
| 497 | void AddDescription(unsigned int instructionNum, const char* pos) |
| 498 | { |
| 499 | if(pos >= sourceStart && pos <= sourceEnd) |
| 500 | sourceInfo.push_back(SourceLine(instructionNum, pos)); |
| 501 | } |
| 502 | |
| 503 | const char *sourceStart; |
| 504 | const char *sourceEnd; |
no test coverage detected