1pub mod completion;
5pub use completion::Label as CompletionLabel;
6pub mod hover;
7pub use hover::Label as HoverLabel;
8pub mod parse;
9pub use parse::Label as ParseLabel;
10pub mod rename;
11pub use rename::{PrepareRename as PrepareRenameLabel, Rename as RenameLabel};
12pub mod diagnostics;
13pub use diagnostics::Label as DiagnosticsLabel;
14pub mod save;
15pub use save::Label as SaveLabel;
16pub mod inlay;
17pub use inlay::Label as InlayLabel;
18pub mod format;
19pub use format::Label as FormatLabel;
20pub mod semantic;
21pub use semantic::Label as SemanticLabel;
22pub mod references;
23pub use references::Label as ReferencesLabel;
24pub mod goto_definition;
25pub use goto_definition::Label as GotoDefinitionLabel;
26pub mod goto_type;
27pub use goto_type::Label as GotoTypeLabel;