================ DebuggerServerCheckBreakpoint Check to see if there is a breakpoint associtated with this statement ================ */
| 227 | ================ |
| 228 | */ |
| 229 | void DebuggerServerCheckBreakpoint ( idInterpreter* interpreter, idProgram* program, int instructionPointer ) |
| 230 | { |
| 231 | if ( !gDebuggerServer ) |
| 232 | { |
| 233 | return; |
| 234 | } |
| 235 | |
| 236 | gDebuggerServer->CheckBreakpoints ( interpreter, program, instructionPointer ); |
| 237 | } |
| 238 | |
| 239 | /* |
| 240 | ================ |
no test coverage detected