node/deps/v8/test/inspector/debugger/command-line-api-with-bound-function-expected.txt
Myles Borins 0a66b223e1
deps: update V8 to 6.0.286.52
PR-URL: https://github.com/nodejs/node/pull/14004
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
2017-08-01 15:23:15 -05:00

24 lines
483 B
Plaintext

Check that debug and monitor methods from Command Line API works with bound function.
> debug foo and bar
> call foo and bar
paused in foo
paused in boo
> undebug foo and bar
> call foo and bar
> monitor foo and bar
> call foo and bar
function foo called
function boo called
> unmonitor foo and bar
> call foo and bar
> monitor and debug bar
> call bar
function boo called
paused in boo
> undebug bar
> call bar
function boo called
> debug and unmonitor bar
> call bar
paused in boo