-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Labels
Description
The debugger needs to decide which stack frames to display, for example in a backtrace, during normal debugging. What's needed is a language-specific recommendation on whether any given frame would be sensible (useful) to a guest language programmer.
The debugger might display such frames anyway, for example in a special mode for language implementors.
To discuss: should the recommendation that a particular frame be hidden also be treated as a suggestion that the call-site that created the frame also be hidden? I'm thinking of Ruby's implementation of certain (but not all) looping constructs as calls. I specifically hid those calls in an early debugger prototype.
@mickjordan reports that this would be useful for current work