mirror of
https://github.com/jerryscript-project/jerryscript.git
synced 2025-12-15 16:29:21 +00:00
Now the debugger generates a breakpoint for each function before its first executable statement. This allows inspecting the function arguments. Position (line and column) info is also added which simplifies finding of anonymus functions. Several tests were update to check more corner cases. JerryScript-DCO-1.0-Signed-off-by: Zoltan Herczeg zherczeg.u-szeged@partner.samsung.com
22 lines
1.3 KiB
Plaintext
22 lines
1.3 KiB
Plaintext
Connecting to: localhost:5001
|
|
Stopped at tests/debugger/do_break.js:15
|
|
(jerry-debugger) Breakpoint 1 at tests/debugger/do_break.js:51
|
|
(jerry-debugger) Breakpoint 2 at tests/debugger/do_break.js:36 (in test() at line:20, col:1)
|
|
(jerry-debugger) Breakpoint 3 at tests/debugger/do_break.js:33 (in f() at line:31, col:3)
|
|
Breakpoint 4 at tests/debugger/do_break.js:45 (in f() at line:43, col:1)
|
|
(jerry-debugger) 1: tests/debugger/do_break.js:51
|
|
2: tests/debugger/do_break.js:36 (in test() at line:20, col:1)
|
|
3: tests/debugger/do_break.js:33 (in f() at line:31, col:3)
|
|
4: tests/debugger/do_break.js:45 (in f() at line:43, col:1)
|
|
(jerry-debugger) Press enter to stop JavaScript execution.
|
|
Stopped at breakpoint:1 tests/debugger/do_break.js:51
|
|
(jerry-debugger) (jerry-debugger) 2: tests/debugger/do_break.js:36 (in test() at line:20, col:1)
|
|
3: tests/debugger/do_break.js:33 (in f() at line:31, col:3)
|
|
4: tests/debugger/do_break.js:45 (in f() at line:43, col:1)
|
|
(jerry-debugger) Press enter to stop JavaScript execution.
|
|
Stopped at breakpoint:2 tests/debugger/do_break.js:36 (in test() at line:20, col:1)
|
|
(jerry-debugger) Press enter to stop JavaScript execution.
|
|
Stopped at breakpoint:3 tests/debugger/do_break.js:33 (in f() at line:31, col:3)
|
|
(jerry-debugger) Press enter to stop JavaScript execution.
|
|
Connection closed.
|