microsoft / vscode-debugadapter-node

Debug adapter protocol and implementation for VS Code.
Other
273 stars 79 forks source link

Missing properties in StackFrame class #172

Closed remss closed 3 years ago

remss commented 6 years ago

Some optional properties defined in the protocol for a StackFrame are missing in the StackFrame class

/ An optional end line of the range covered by the stack frame. */ endLine?: number; /* An optional end column of the range covered by the stack frame. / endColumn?: number; / The module associated with this frame, if any. */ moduleId?: number | string; /* An optional hint for how to present this frame in the UI. A value of 'label' can be used to indicate that the frame is an artificial frame that is used as a visual label or separator. A value of 'subtle' can be used to change the appearance of a frame in a 'subtle' way. / presentationHint?: 'normal' | 'label' | 'subtle';

Version vscode-debugadapter-node 1.28.0

remss commented 3 years ago

Thank you 👍