Arquivos
hhvm/hphp/test/quick/debugger/break5.php
T
Herman Venter ee2cd8d32e Do not evaluate breakpoint conditions during stepping.
Flow control commands should not evaluate the conditions of conditional breakpoints when enabling and disabling breakpoints during stepping. Also, all breakpoints, rather than just the first matching breakpoint should be enabled/disabled.
2013-07-18 17:28:39 -07:00

15 linhas
166 B
PHP

<?php
// Warning: line numbers are sensitive, do not change
function bad() {
global $x;
$x += 10;
return true;
}
$x = 1;
echo $x."\n";
echo $x."\n";
$x = 1;