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();