-
Notifications
You must be signed in to change notification settings - Fork 344
Closed
Labels
in debuggingRelates to the debug adapter or process of running debug sessionsRelates to the debug adapter or process of running debug sessionsis enhancementAn enhancement or improvement that should be listed in release notes but is not a bug fix.An enhancement or improvement that should be listed in release notes but is not a bug fix.is performance
Milestone
Description
Computing the call stack on web can be slow, and we have to do the entire thing even when VS Code only wants the top 20 frames.
The VM service is getting support for fetching a slice:
And I found that if we just give VS Code a totalFrames or requestedFrames + batchSize, it will happily call us multiple times with batches (this is not spec'd behaviour, but it seems worth the trade-off of possibly having to revert/update in future).
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
in debuggingRelates to the debug adapter or process of running debug sessionsRelates to the debug adapter or process of running debug sessionsis enhancementAn enhancement or improvement that should be listed in release notes but is not a bug fix.An enhancement or improvement that should be listed in release notes but is not a bug fix.is performance