| 482 | } |
| 483 | |
| 484 | void MessageHandler::textDocument_semanticTokensFull(TextDocumentParam ¶m, ReplyOnce &reply) { |
| 485 | SemanticTokensRangeParams parameters{param.textDocument, lsRange{{0, 0}, {UINT16_MAX, INT16_MAX}}}; |
| 486 | textDocument_semanticTokensRange(parameters, reply); |
| 487 | } |
| 488 | |
| 489 | void MessageHandler::textDocument_semanticTokensRange(SemanticTokensRangeParams ¶m, ReplyOnce &reply) { |
| 490 | int file_id; |
nothing calls this directly
no outgoing calls
no test coverage detected