We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ad08ca commit 8e02a40Copy full SHA for 8e02a40
crates/analyzer/README.md
@@ -76,6 +76,10 @@ fn do_analysis() {
76
// Computes inlay hints.
77
let inlay_hints = analysis.inlay_hints(None);
78
dbg!(&inlay_hints);
79
+
80
+ // Computes signature help.
81
+ let signature_help = analysis.signature_help(TextSize::from(71));
82
+ dbg!(&signature_help);
83
}
84
85
fn project_code_stubs() {
crates/analyzer/src/lib.rs
@@ -50,6 +50,10 @@
50
//! // Computes inlay hints.
51
//! let inlay_hints = analysis.inlay_hints(None);
52
//! dbg!(&inlay_hints);
53
+//!
54
+//! // Computes signature help.
55
+//! let signature_help = analysis.signature_help(TextSize::from(71));
56
+//! dbg!(&signature_help);
57
//! }
58
//!
59
//! fn project_code_stubs() {
0 commit comments