================ idInterpreter::CurrentLine ================ */
| 404 | ================ |
| 405 | */ |
| 406 | int idInterpreter::CurrentLine( void ) const { |
| 407 | if ( instructionPointer < 0 ) { |
| 408 | return 0; |
| 409 | } |
| 410 | return gameLocal.program.GetLineNumberForStatement( instructionPointer ); |
| 411 | } |
| 412 | |
| 413 | /* |
| 414 | ================ |
no test coverage detected