2016-10-05 17:58:51 +00:00
|
|
|
Check that debug and monitor methods from Command Line API works with bound function.
|
2016-10-06 16:19:51 +00:00
|
|
|
> debug foo and bar
|
|
|
|
> call foo and bar
|
2016-10-05 17:58:51 +00:00
|
|
|
paused in foo
|
|
|
|
paused in boo
|
2016-10-06 16:19:51 +00:00
|
|
|
> undebug foo and bar
|
|
|
|
> call foo and bar
|
|
|
|
> monitor foo and bar
|
|
|
|
> call foo and bar
|
2016-10-05 17:58:51 +00:00
|
|
|
function foo called
|
|
|
|
function boo called
|
2016-10-06 16:19:51 +00:00
|
|
|
> unmonitor foo and bar
|
|
|
|
> call foo and bar
|
|
|
|
> monitor and debug bar
|
|
|
|
> call bar
|
2016-10-05 17:58:51 +00:00
|
|
|
function boo called
|
|
|
|
paused in boo
|
2016-10-06 16:19:51 +00:00
|
|
|
> undebug bar
|
|
|
|
> call bar
|
2016-10-05 17:58:51 +00:00
|
|
|
function boo called
|
2016-10-06 16:19:51 +00:00
|
|
|
> debug and unmonitor bar
|
|
|
|
> call bar
|
2017-05-19 00:35:45 +00:00
|
|
|
paused in boo
|