11 lines
244 B
Plaintext
11 lines
244 B
Plaintext
|
Checks that Debugger.restartFrame works
|
||
|
Paused at debugger:
|
||
|
function foo() { #debugger; }; foo();
|
||
|
|
||
|
Call restart and dump location of restart:
|
||
|
function foo() { debugger; }; #foo();
|
||
|
|
||
|
Location after restart:
|
||
|
function foo() { #debugger; }; foo();
|
||
|
|