| 2580 | } |
| 2581 | |
| 2582 | static void compile_emit_debug(compiler * c, int32_t line) |
| 2583 | { |
| 2584 | #ifdef JAM_DEBUGGER |
| 2585 | if ( debug_is_debugging() ) |
| 2586 | compile_emit( c, INSTR_DEBUG_LINE, line ); |
| 2587 | #endif |
| 2588 | } |
| 2589 | |
| 2590 | static void compile_parse( PARSE * parse, compiler * c, int32_t result_location ) |
| 2591 | { |
no test coverage detected