View Source GenLSP.Structures.SelectionRange (gen_lsp v0.8.1)

A selection range represents a part of a selection hierarchy. A selection range may have a parent selection range that contains it.

Link to this section Summary

Functions

Fields

  • range: The {@link Range range} of this selection range.
  • parent: The parent selection range containing this range. Therefore parent.range must contain this.range.

Link to this section Types

@type t() :: %GenLSP.Structures.SelectionRange{
  parent: t() | nil,
  range: GenLSP.Structures.Range.t()
}

Link to this section Functions

Link to this function

%GenLSP.Structures.SelectionRange{}

View Source (struct)

fields

Fields

  • range: The {@link Range range} of this selection range.
  • parent: The parent selection range containing this range. Therefore parent.range must contain this.range.