8d25c0f6f2
The debugger client now accepts feedback from the the debugger server about whether a breakpoint can be hit, absent further loads of files, classes or functions.
20 linhas
522 B
Plaintext
20 linhas
522 B
Plaintext
Program %s/break4.php loaded. Type '[r]un' or '[c]ontinue' to go.
|
|
break :fb:my:thing::doIt()
|
|
Breakpoint 1 set upon entering xhp_fb__my__thing::doIt()
|
|
But wont break until class xhp_fb__my__thing has been loaded.
|
|
continue
|
|
break4.php loaded
|
|
Program %s/break4.php exited normally.
|
|
@ :fb:my:thing::doIt()
|
|
Breakpoint 1 reached at xhp_fb__my__thing::doIt() on line 8 of %s/break4.php
|
|
7 function doIt() {
|
|
8 echo "doing my thing\n";
|
|
9 }
|
|
|
|
break clear all
|
|
All breakpoints are cleared.
|
|
continue
|
|
doing my thing
|
|
|
|
quit
|