mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-26 20:05:03 +00:00
Remove stray dbg!
This commit is contained in:
parent
852b083794
commit
d107926f86
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ fn structure_node(node: &SyntaxNode) -> Option<StructureNode> {
|
||||||
detail: Option<String>,
|
detail: Option<String>,
|
||||||
) -> Option<StructureNode> {
|
) -> Option<StructureNode> {
|
||||||
let name = node.name()?;
|
let name = node.name()?;
|
||||||
dbg!(name.text().to_string());
|
|
||||||
Some(StructureNode {
|
Some(StructureNode {
|
||||||
parent: None,
|
parent: None,
|
||||||
label: name.text().to_string(),
|
label: name.text().to_string(),
|
||||||
|
|
Loading…
Reference in a new issue