mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-15 14:43:58 +00:00
Remove stray dbg
This commit is contained in:
parent
b55d22e060
commit
8f3677a94a
1 changed files with 2 additions and 2 deletions
|
@ -219,10 +219,10 @@ fn highlight_element(
|
|||
CHAR => HighlightTag::CharLiteral.into(),
|
||||
LIFETIME => {
|
||||
let h = Highlight::new(HighlightTag::Lifetime);
|
||||
dbg!(match element.parent().map(|it| it.kind()) {
|
||||
match element.parent().map(|it| it.kind()) {
|
||||
Some(LIFETIME_PARAM) | Some(LABEL) => h | HighlightModifier::Definition,
|
||||
_ => h,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
k if k.is_keyword() => {
|
||||
|
|
Loading…
Reference in a new issue