command-line-api-with-bound-function-expected.txt 483 Bytes
Newer Older
1
Check that debug and monitor methods from Command Line API works with bound function.
2 3
> debug foo and bar
> call foo and bar
4 5
paused in foo
paused in boo
6 7 8 9
> undebug foo and bar
> call foo and bar
> monitor foo and bar
> call foo and bar
10 11
function foo called
function boo called
12 13 14 15
> unmonitor foo and bar
> call foo and bar
> monitor and debug bar
> call bar
16 17
function boo called
paused in boo
18 19
> undebug bar
> call bar
20
function boo called
21 22
> debug and unmonitor bar
> call bar
23
paused in boo