documentHighlight method
Occurrences to highlight for the symbol at position in uri.
Implementation
Future<List<DocumentHighlight>> documentHighlight(
String uri,
Position position,
) async {
await _ready;
return _client.documentHighlight(uri, position);
}