Skip to content

Add additional location information to StepInTarget #274

@connor4312

Description

@connor4312

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 functionality

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions