mirror of
https://github.com/php/php-src.git
synced 2025-08-20 01:14:28 +02:00
introduce proper support for file:#opline
This commit is contained in:
parent
a6eee49326
commit
c3a897bf3d
8 changed files with 124 additions and 96 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue