Skip to content

Commit

Permalink
add test
Browse files Browse the repository at this point in the history
  • Loading branch information
LastExceed committed Oct 27, 2024
1 parent 7c8c28c commit 167fe5f
Showing 1 changed file with 76 additions and 0 deletions.
76 changes: 76 additions & 0 deletions crates/ide/src/file_structure.rs
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,17 @@ fn f() {}
// endregion
fn g() {}
}
fn let_statements() {
let x = 42;
let mut y = x;
let Foo {
..
} = Foo { x };
if let None = Some(x) {}
_ = ();
let _ = g();
}
"#,
expect![[r#"
[
Expand Down Expand Up @@ -651,6 +662,71 @@ fn g() {}
),
deprecated: false,
},
StructureNode {
parent: None,
label: "let_statements",
navigation_range: 641..655,
node_range: 638..798,
kind: SymbolKind(
Function,
),
detail: Some(
"fn()",
),
deprecated: false,
},
StructureNode {
parent: Some(
26,
),
label: "x",
navigation_range: 668..669,
node_range: 664..675,
kind: SymbolKind(
Local,
),
detail: None,
deprecated: false,
},
StructureNode {
parent: Some(
26,
),
label: "mut y",
navigation_range: 684..689,
node_range: 680..694,
kind: SymbolKind(
Local,
),
detail: None,
deprecated: false,
},
StructureNode {
parent: Some(
26,
),
label: "Foo { .. }",
navigation_range: 703..725,
node_range: 699..738,
kind: SymbolKind(
Local,
),
detail: None,
deprecated: false,
},
StructureNode {
parent: Some(
26,
),
label: "_",
navigation_range: 788..789,
node_range: 784..796,
kind: SymbolKind(
Local,
),
detail: None,
deprecated: false,
},
]
"#]],
);
Expand Down

0 comments on commit 167fe5f

Please sign in to comment.