show conditionals

This commit is contained in:
krakjoe 2013-11-13 14:50:13 +00:00
parent 072622e799
commit f6d45107b2
2 changed files with 4 additions and 3 deletions

View File

@ -698,12 +698,13 @@ zend_vm_enter:
}\
} while(!(PHPDBG_G(flags) & PHPDBG_IS_QUITTING))
phpdbg_print_opline(
execute_data, 0 TSRMLS_CC);
/* allow conditional breakpoints to access the vm uninterrupted */
if (!(PHPDBG_G(flags) & PHPDBG_IN_COND_BP)) {
/* not while in conditionals */
phpdbg_print_opline(
execute_data, 0 TSRMLS_CC);
/* conditions cannot be executed by eval()'d code */
if (!(PHPDBG_G(flags) & PHPDBG_IN_EVAL)
&& (PHPDBG_G(flags) & PHPDBG_HAS_COND_BP)

Binary file not shown.

After

Width:  |  Height:  |  Size: 108 KiB