forked from argotorg/fe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmod.rs
More file actions
24 lines (24 loc) · 673 Bytes
/
Copy pathmod.rs
File metadata and controls
24 lines (24 loc) · 673 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
pub(super) mod call_hierarchy;
mod capabilities;
pub(super) mod code_actions;
pub(super) mod code_lens;
pub(super) mod codegen_view;
pub(super) mod completion;
pub(super) mod declaration;
pub(super) mod document_symbols;
pub(super) mod folding_range;
pub(super) mod goto;
pub(super) mod handlers;
pub(super) mod highlight;
pub(super) mod hover;
pub(super) mod implementations;
pub(super) mod inlay_hints;
pub(super) mod item_info;
pub(super) mod references;
pub(super) mod rename;
pub(super) mod selection_range;
pub(super) mod semantic_tokens;
pub(super) mod signature_help;
pub(super) mod type_definition;
pub(super) mod type_hierarchy;
pub(super) mod workspace_symbols;