ReferenceLocation

data class ReferenceLocation(val uri: String, val range: Range)

A single reference location reported by textDocument/references: the target document uri and the range of the reference within it.

Mirrors upstream's ReferenceLocation, but keeps the raw URI/range rather than eagerly binding to a WorkspaceFile/view — the panel resolves a preview and navigates lazily so it works for files that are not currently open.

Constructors

Link copied to clipboard
constructor(uri: String, range: Range)

Properties

Link copied to clipboard
val range: Range
Link copied to clipboard
val uri: String