references method
References to the symbol at line:character in path.
Implementation
Future<List<Location>> references(
String path,
int line,
int character, {
bool includeDeclaration = true,
}) => _withDoc(
path,
(lsp, uri) => lsp.references(
uri,
Position(line, character),
includeDeclaration: includeDeclaration,
),
);