Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test: Stack frame paging #4819

Closed
3 tasks done
isidorn opened this issue Mar 31, 2016 · 3 comments
Closed
3 tasks done

Test: Stack frame paging #4819

isidorn opened this issue Mar 31, 2016 · 3 comments
Labels
debug Debug viewlet, configurations, breakpoints, adapter issues testplan-item
Milestone

Comments

@isidorn
Copy link
Contributor

isidorn commented Mar 31, 2016

Previously we only supported showing 20 stack frames in the call stack pane in debug viewlet. Now if a call stack has more than 20 stack frames it is possible to load the additional stack frames. Verify:

  • If there are more than 20 stack frames the call stack view shows this and makes it possible to load additional stack frames.
  • If there are less than 20 stack frames or if all stack frames are loaded the call stack view does not allow to load additional stack frames
@isidorn isidorn added debug Debug viewlet, configurations, breakpoints, adapter issues testplan-item labels Mar 31, 2016
@isidorn isidorn added this to the April 2016 milestone Mar 31, 2016
@egamma egamma mentioned this issue Apr 5, 2016
68 tasks
@joaomoreno joaomoreno changed the title Stack frame paging Test: Stack frame paging Apr 26, 2016
@joaomoreno
Copy link
Member

Thanks for the sample script...

@isidorn
Copy link
Contributor Author

isidorn commented Apr 26, 2016

function fib(t) {

    if (t < 2) {
         return 1;
    }

    return fib(t - 1) + fib(t - 2);
}

fib(50)

@joaomoreno
Copy link
Member

Thanks!

@vsccarl vsccarl closed this as completed Apr 27, 2016
@vscodebot vscodebot bot locked and limited conversation to collaborators Nov 18, 2017
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
debug Debug viewlet, configurations, breakpoints, adapter issues testplan-item
Projects
None yet
Development

No branches or pull requests

3 participants