mirror of
https://github.com/Samsung/escargot.git
synced 2026-06-29 10:02:14 +00:00
* collect backtrace info including eval codes Signed-off-by: HyukWoo Park <hyukwoo.park@samsung.com>
22 lines
615 B
Text
22 lines
615 B
Text
Connecting to: localhost:6501
|
|
Connection created!!!
|
|
Stopped at tools/debugger/tests/do_pending_breakpoints_lines.js:20
|
|
(escargot-debugger) b :1
|
|
No breakpoint found, do you want to add a pending breakpoint? (y or [n])
|
|
Pending breakpoint 1 at :1
|
|
(escargot-debugger) list
|
|
=== Pending breakpoints ===
|
|
1: :1 (pending)
|
|
(escargot-debugger) c
|
|
Print: pending-breakpoints_lines
|
|
Breakpoint 2 at eval code:1
|
|
Stopped at breakpoint:2 eval code:1
|
|
(escargot-debugger) list
|
|
=== Active breakpoints ===
|
|
2: eval code:1
|
|
(escargot-debugger) source
|
|
Source: eval code
|
|
1 > 1;var a = 1
|
|
(escargot-debugger) c
|
|
Print: 1
|
|
Connection closed.
|