Add static semantic token modifier for associated functions with no &self

refactor logic into code_model.rs

address comments
This commit is contained in:
Anatol Liu 2020-11-04 20:08:46 -08:00
parent 90031a267a
commit 6b950d24d4
2 changed files with 3 additions and 16 deletions

View file

@ -6,7 +6,7 @@ pub(crate) mod tags;
#[cfg(test)]
mod tests;
use hir::{Local, Name, Semantics, VariantDef};
use hir::{AsAssocItem, Local, Name, Semantics, VariantDef};
use ide_db::{
defs::{Definition, NameClass, NameRefClass},
RootDatabase,
@ -746,7 +746,7 @@ fn highlight_def(db: &RootDatabase, def: Definition) -> Highlight {
if func.is_unsafe(db) {
h |= HighlightModifier::Unsafe;
}
if func.is_assoc_item(db) && func.self_param(db).is_none() {
if func.as_assoc_item(db).is_some() && func.self_param(db).is_none() {
h |= HighlightModifier::Static;
}
return h;