1Connecting to: localhost:5001 2Stopped at tests/debugger/do_src.js:19 3(jerry-debugger) b f 4Breakpoint 1 at tests/debugger/do_src.js:16 (in f() at line:15, col:1) 5(jerry-debugger) n 6Stopped at breakpoint:1 tests/debugger/do_src.js:16 (in f() at line:15, col:1) 7(jerry-debugger) next 8out: F1 9Stopped at tests/debugger/do_src.js:20 10(jerry-debugger) s 11Stopped at <unknown>:1 12(jerry-debugger) source 0 13 1 > f = function f() { 14 2 print('F2') } 15(jerry-debugger) n 16Stopped at tests/debugger/do_src.js:21 17(jerry-debugger) step 18Stopped at <unknown>:2 (in f() at line:1, col:5) 19(jerry-debugger) src 20 1 f = function f() { 21 2 > print('F2') } 22(jerry-debugger) c 23out: F2 24