-
Notifications
You must be signed in to change notification settings - Fork 148
Closed
Labels
feature-requestRequest for new features or functionalityRequest for new features or functionality
Milestone
Description
References microsoft/vscode#149871
I suggest we should add additional optional properties to the StepInTarget
, like so:
interface StepInTarget {
/**
* Unique identifier for a stepIn target.
*/
id: number;
/**
* The name of the stepIn target (shown in the UI).
*/
label: string;
// new properties:
/**
* An optional line number of the step in target.
*/
line?: number;
/**
* An optional column of the step in target.
*/
column?: number;
/**
* An optional end line of the range covered by the step in target.
*/
endLine?: number;
/**
* An optional end column of the range covered by the step in target.
*/
endColumn?: number;
}
Metadata
Metadata
Assignees
Labels
feature-requestRequest for new features or functionalityRequest for new features or functionality