Add pending breakpoints feature to python debugger client (#1810)
- Support to add pending breakpoints - Add fbreak command for the prompt - Manage this breakpoints - Add tests for it JerryScript-DCO-1.0-Signed-off-by: Levente Orban orbanl@inf.u-szeged.hu
This commit is contained in:
committed by
Zoltan Herczeg
parent
31cd3b8020
commit
0806c16902
@@ -0,0 +1,16 @@
|
||||
Connecting to: localhost:5001
|
||||
Stopped at tests/debugger/do_pending_breakpoints.js:15
|
||||
(jerry-debugger) fbreak f
|
||||
Breakpoint not found
|
||||
Pending breakpoint added
|
||||
(jerry-debugger) list pending
|
||||
0: f
|
||||
(jerry-debugger) n
|
||||
Stopped at tests/debugger/do_pending_breakpoints.js:17
|
||||
(jerry-debugger) n
|
||||
Breakpoint 1 at <unknown>:1 (in f() at line:1, col:1)
|
||||
Stopped at tests/debugger/do_pending_breakpoints.js:19
|
||||
(jerry-debugger) c
|
||||
Stopped at breakpoint:1 <unknown>:1 (in f() at line:1, col:1)
|
||||
(jerry-debugger) c
|
||||
Connection closed.
|
||||
Reference in New Issue
Block a user