introduce proper support for file:#opline

This commit is contained in:
krakjoe 2014-02-21 18:01:50 +00:00
parent a6eee49326
commit c3a897bf3d
8 changed files with 124 additions and 96 deletions

View file

@ -778,6 +778,9 @@ PHPDBG_COMMAND(break) /* {{{ */
case FILE_PARAM:
phpdbg_set_breakpoint_file(param->file.name, param->file.line TSRMLS_CC);
break;
case NUMERIC_FILE_PARAM:
phpdbg_set_breakpoint_file_opline(param->file.name, param->file.line TSRMLS_CC);
break;
case COND_PARAM:
phpdbg_set_breakpoint_expression(param->str, param->len TSRMLS_CC);
break;