52804d5874
Currently a breakpoint specified as relativefilepath:lineno will match only if the relative file path is a simple file name or if sandbox root + relative file path is an exact match. This is now generalized so that matching occurs if the relative file path is a suffix (path) of the absolute path of the execution location.
17 linhas
269 B
Plaintext
17 linhas
269 B
Plaintext
break quick/debugger/break2.php:7
|
|
break foo2()
|
|
break cls2::pubObj()
|
|
break cls2::pubCls()
|
|
break list
|
|
run
|
|
@ foo2('test_break6')
|
|
break list
|
|
continue
|
|
@ $break6=new cls2()
|
|
@ $break6->pubObj('test_break6')
|
|
continue
|
|
@ cls2::pubCls('test_break6')
|
|
break clear all
|
|
continue
|
|
quit
|