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

45 linhas
785 B
Plaintext

exception MyException
break list
run
exception NotAnException
break list
break clear all
exception Exception
break list
@ throw_exception()
break clear all
continue
exception MyException
@ throw_myexception()
break clear all
continue
exception error
@ error_undefined_class()
break clear all
continue
exception Exception
@ \Outer\throw_exception()
break clear all
continue
exception \Outer\MyException
@ Outer\throw_myexception()
break clear all
continue
exception error
@ \Outer\error_undefined_class()
break clear all
continue
exception Exception
@ \Outer\Inner\throw_exception()
break clear all
continue
exception Outer\Inner\MyException
@ Outer\Inner\throw_myexception()
break clear all
continue
exception error
@ \Outer\Inner\error_undefined_class()
break clear all
continue
quit