Arquivos
hhvm/hphp/test/quick/debugger/break4.php.expectf
T
Herman Venter 8d25c0f6f2 Give feedback if breakpoints won't hit because a file is not loaded, a class is not loaded, or a function is not loaded
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.
2013-06-21 11:44:40 -07:00

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