================ idInterpreter::CurrentFile ================ */
| 416 | ================ |
| 417 | */ |
| 418 | const char *idInterpreter::CurrentFile( void ) const { |
| 419 | if ( instructionPointer < 0 ) { |
| 420 | return ""; |
| 421 | } |
| 422 | return gameLocal.program.GetFilenameForStatement( instructionPointer ); |
| 423 | } |
| 424 | |
| 425 | /* |
| 426 | ============ |
no test coverage detected