Arquivos
hhvm/hphp/test/quick/debugger/break1.php.in
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

35 linhas
537 B
Plaintext

run
break break1.php:7
break break1.php:77
break list
@ foo('test_break1')
variable
break list
break clear all
continue
break foo()
@ foo('test_break2')
variable
break clear all
continue
break cls::pubObj()
@ $break3=new cls()
@ $break3->pubObj('test_break3')
variable
break clear all
continue
break cls::pubCls()
@ cls::pubCls('test_break4')
variable
break clear all
continue
@ $break5=new cls()
@ $break5->pubHardBreak('test_break5')
continue
break clear all
break cls::nosuchMethod()
break list
break noSuchFunction()
break list
quit