Expand description
v0.31 (ADR 0064): locals navigation — resolve the local binding under the
cursor and all its sites (its definition plus every use that resolves to
it), for references, go-to-definition, and documentHighlight.
Slice 1 records bindings with scope ranges (not use sites); the use sites
are recovered here by lexing the file and keeping the identifier tokens of
the binding’s name within its scope that resolve back to it (so a shadowing
inner binding’s uses — and every binding’s def token — are excluded).
Pure over the analysed snapshot, like index_queries.
Functions§
- describe_
local_ at - v0.122 (editor-currency slice 1): a hover summary for the local binding /
parameter under the cursor —
let x: <ty>/param n: <ty>, rendered from the checker’s capturedLocalBinding(itstyis already the surfacetype_refform, matching inlay hints and signature help).Nonewhen the cursor is not on a local. Reuses the sametarget_atresolution as go-to-definition / references, so hover cannot disagree with them. - local_
definition_ at - The definition site of the local under the cursor, if any.
- local_
sites_ at - All sites of the local under the cursor — its definition first, then every
use that resolves to it (shadowing-safe).
Nonewhen the cursor is not on a local. - local_
token_ sites - Every local-binding occurrence in the file —
(span, is_definition)— for semantic-token colouring. A token is a definition if it sits on a binding’s def span, else a use if it resolves to a local in scope at that point.