Closed
Bug 1476615
Opened 6 years ago
Closed 5 years ago
Step out should show the completion value
Categories
(DevTools :: Debugger, enhancement, P2)
DevTools
Debugger
Tracking
(Not tracked)
RESOLVED
DUPLICATE
of bug 923975
People
(Reporter: jlast, Assigned: jlast)
References
(Blocks 1 open bug)
Details
Attachments
(1 file)
204.48 KB,
image/png
|
Details |
https://bugzilla.mozilla.org/show_bug.cgi?id=923975 is changing step out so that instead of pausing in the pop handler it pauses in the parent's onStep. This change means that we need to update how we show completion values for step out.
> function a() {
> return 2;
> }
>
> b(a()) // <-- show a's completion value here
I believe the patch can look something like this [1], but my biggest question is how we should show the return value. Should it be `<return> 2` like we typically show it or should we include the name of the frame we're leaving from.
[1] https://github.com/jasonLaster/gecko-dev/commit/54a3ace77ac07fd42fb8035eb796ccc620dbbe73
Assignee | ||
Updated•6 years ago
|
Assignee | ||
Updated•6 years ago
|
Blocks: dbg-stepping
Assignee | ||
Updated•6 years ago
|
Priority: P3 → P2
Assignee | ||
Updated•6 years ago
|
Updated•6 years ago
|
Flags: qe-verify+
Updated•5 years ago
|
Assignee: jlaster → nobody
Updated•5 years ago
|
Whiteboard: [debugger-mvp]
Assignee | ||
Updated•5 years ago
|
Assignee: nobody → jlaster
Assignee | ||
Updated•5 years ago
|
Status: NEW → RESOLVED
Closed: 5 years ago
Resolution: --- → DUPLICATE
Assignee | ||
Comment 3•5 years ago
|
||
Updated•5 years ago
|
Whiteboard: [debugger-mvp]
You need to log in
before you can comment on or make changes to this bug.
Description
•