mirror of
https://github.com/jerryscript-project/jerryscript.git
synced 2025-12-15 16:29:21 +00:00
Sending the output to the debugger client, at the moment only the JS side prints are sent over. JerryScript-DCO-1.0-Signed-off-by: Daniel Balla dballa@inf.u-szeged.hu
21 lines
599 B
Plaintext
21 lines
599 B
Plaintext
Connecting to: localhost:5001
|
|
Stopped at tests/debugger/do_src.js:19
|
|
(jerry-debugger) b f
|
|
Breakpoint 1 at tests/debugger/do_src.js:16 (in f() at line:15, col:1)
|
|
(jerry-debugger) n
|
|
Stopped at breakpoint:1 tests/debugger/do_src.js:16 (in f() at line:15, col:1)
|
|
(jerry-debugger) next
|
|
out: F1
|
|
Stopped at tests/debugger/do_src.js:20
|
|
(jerry-debugger) s
|
|
Stopped at <unknown>:1
|
|
(jerry-debugger) source 0
|
|
1 > f = function f() {
|
|
(jerry-debugger) n
|
|
Stopped at tests/debugger/do_src.js:21
|
|
(jerry-debugger) step
|
|
Stopped at <unknown>:2 (in f() at line:1, col:5)
|
|
(jerry-debugger) src
|
|
(jerry-debugger) c
|
|
out: F2
|