This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
src/tools/rust-analyzer/crates/rust-analyzer/src Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -1053,11 +1053,10 @@ impl GlobalState {
10531053 . on :: < NO_RETRY , lsp_request:: GotoDeclaration > ( handlers:: handle_goto_declaration)
10541054 . on :: < NO_RETRY , lsp_request:: GotoImplementation > ( handlers:: handle_goto_implementation)
10551055 . on :: < NO_RETRY , lsp_request:: GotoTypeDefinition > ( handlers:: handle_goto_type_definition)
1056- // FIXME: This should not be tried as it contains offsets that can get outdated!
1057- . on :: < RETRY , lsp_request:: InlayHintRequest > ( handlers:: handle_inlay_hints)
1058- . on :: < RETRY , lsp_request:: InlayHintResolveRequest > ( handlers:: handle_inlay_hints_resolve)
1056+ . on :: < NO_RETRY , lsp_request:: InlayHintRequest > ( handlers:: handle_inlay_hints)
1057+ . on :: < NO_RETRY , lsp_request:: InlayHintResolveRequest > ( handlers:: handle_inlay_hints_resolve)
10591058 . on :: < NO_RETRY , lsp_request:: CodeLensRequest > ( handlers:: handle_code_lens)
1060- . on :: < RETRY , lsp_request:: CodeLensResolve > ( handlers:: handle_code_lens_resolve)
1059+ . on :: < NO_RETRY , lsp_request:: CodeLensResolve > ( handlers:: handle_code_lens_resolve)
10611060 . on :: < NO_RETRY , lsp_request:: PrepareRenameRequest > ( handlers:: handle_prepare_rename)
10621061 . on :: < NO_RETRY , lsp_request:: Rename > ( handlers:: handle_rename)
10631062 . on :: < NO_RETRY , lsp_request:: References > ( handlers:: handle_references)
You can’t perform that action at this time.
0 commit comments