-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtooling.rs
More file actions
54 lines (44 loc) · 1.25 KB
/
Copy pathtooling.rs
File metadata and controls
54 lines (44 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
//! Stable editor/tooling-facing API.
//!
//! Queries are editor-neutral. Protocol and editor clients should adapt these
//! products rather than reaching into parser, checker, or backend internals.
pub use crate::{
Diagnostic, DiagnosticCode, DiagnosticFix, DiagnosticLabel, DiagnosticLabelStyle,
DiagnosticSeverity, FixApplicability, TextEdit, format_source,
};
/// Revisioned compiler queries and semantic snapshots.
pub mod database {
pub use crate::database::*;
}
/// Completion candidates and snippets.
pub mod completion {
pub use crate::completion::*;
}
/// Normalized standard-library documentation views.
pub mod documentation {
pub use crate::documentation::*;
}
/// Semantic highlighting tokens.
pub mod highlight {
pub use crate::highlight::*;
}
/// Hover and signature-help products.
pub mod insight {
pub use crate::insight::*;
}
/// Compiler-owned syntax, built-in, and lifecycle catalog.
pub mod language {
pub use crate::language::*;
}
/// Selection-based, editor-neutral source refactorings.
pub mod refactor {
pub use crate::refactor::*;
}
/// In-process Language Server Protocol handler.
pub mod lsp {
pub use crate::lsp::*;
}
/// Document outline products.
pub mod symbols {
pub use crate::symbols::*;
}