View Source GenLSP.Structures.SelectionRange (gen_lsp v0.10.0)
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 containthis.range
.
Link to this section Types
@type t() :: %GenLSP.Structures.SelectionRange{ parent: t() | nil, range: GenLSP.Structures.Range.t() }
Link to this section Functions
fields
Fields
- range: The {@link Range range} of this selection range.
- parent: The parent selection range containing this range. Therefore
parent.range
must containthis.range
.