mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-12 05:08:52 +00:00
Merge #8942
8942: Add `library` semantic token modifier to items from other crates r=arzg a=arzg Closes #5772. A lot of code here is pretty repetitive; please let me know if you have any ideas how to improve it, or whether it’s fine as-is. Side-note: How can I add tests for this? I don’t see a way for the test Rust code in `test_highlighting` to reference other crates to observe the new behaviour. Co-authored-by: Aramis Razzaghipour <aramisnoah@gmail.com>
This commit is contained in:
commit
8b049ec393
10 changed files with 124 additions and 62 deletions
|
@ -551,10 +551,6 @@ impl Struct {
|
||||||
Module { id: self.id.lookup(db.upcast()).container }
|
Module { id: self.id.lookup(db.upcast()).container }
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn krate(self, db: &dyn HirDatabase) -> Option<Crate> {
|
|
||||||
Some(self.module(db).krate())
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn name(self, db: &dyn HirDatabase) -> Name {
|
pub fn name(self, db: &dyn HirDatabase) -> Name {
|
||||||
db.struct_data(self.id).name.clone()
|
db.struct_data(self.id).name.clone()
|
||||||
}
|
}
|
||||||
|
@ -639,10 +635,6 @@ impl Enum {
|
||||||
Module { id: self.id.lookup(db.upcast()).container }
|
Module { id: self.id.lookup(db.upcast()).container }
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn krate(self, db: &dyn HirDatabase) -> Option<Crate> {
|
|
||||||
Some(self.module(db).krate())
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn name(self, db: &dyn HirDatabase) -> Name {
|
pub fn name(self, db: &dyn HirDatabase) -> Name {
|
||||||
db.enum_data(self.id).name.clone()
|
db.enum_data(self.id).name.clone()
|
||||||
}
|
}
|
||||||
|
@ -672,6 +664,7 @@ impl Variant {
|
||||||
pub fn module(self, db: &dyn HirDatabase) -> Module {
|
pub fn module(self, db: &dyn HirDatabase) -> Module {
|
||||||
self.parent.module(db)
|
self.parent.module(db)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn parent_enum(self, _db: &dyn HirDatabase) -> Enum {
|
pub fn parent_enum(self, _db: &dyn HirDatabase) -> Enum {
|
||||||
self.parent
|
self.parent
|
||||||
}
|
}
|
||||||
|
@ -728,10 +721,6 @@ impl Adt {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn krate(self, db: &dyn HirDatabase) -> Crate {
|
|
||||||
self.module(db).krate()
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn name(self, db: &dyn HirDatabase) -> Name {
|
pub fn name(self, db: &dyn HirDatabase) -> Name {
|
||||||
match self {
|
match self {
|
||||||
Adt::Struct(s) => s.name(db),
|
Adt::Struct(s) => s.name(db),
|
||||||
|
@ -820,10 +809,6 @@ impl Function {
|
||||||
self.id.lookup(db.upcast()).module(db.upcast()).into()
|
self.id.lookup(db.upcast()).module(db.upcast()).into()
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn krate(self, db: &dyn HirDatabase) -> Option<Crate> {
|
|
||||||
Some(self.module(db).krate())
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn name(self, db: &dyn HirDatabase) -> Name {
|
pub fn name(self, db: &dyn HirDatabase) -> Name {
|
||||||
db.function_data(self.id).name.clone()
|
db.function_data(self.id).name.clone()
|
||||||
}
|
}
|
||||||
|
@ -1013,10 +998,6 @@ impl Const {
|
||||||
Module { id: self.id.lookup(db.upcast()).module(db.upcast()) }
|
Module { id: self.id.lookup(db.upcast()).module(db.upcast()) }
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn krate(self, db: &dyn HirDatabase) -> Option<Crate> {
|
|
||||||
Some(self.module(db).krate())
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn name(self, db: &dyn HirDatabase) -> Option<Name> {
|
pub fn name(self, db: &dyn HirDatabase) -> Option<Name> {
|
||||||
db.const_data(self.id).name.clone()
|
db.const_data(self.id).name.clone()
|
||||||
}
|
}
|
||||||
|
@ -1044,10 +1025,6 @@ impl Static {
|
||||||
Module { id: self.id.lookup(db.upcast()).module(db.upcast()) }
|
Module { id: self.id.lookup(db.upcast()).module(db.upcast()) }
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn krate(self, db: &dyn HirDatabase) -> Option<Crate> {
|
|
||||||
Some(self.module(db).krate())
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn name(self, db: &dyn HirDatabase) -> Option<Name> {
|
pub fn name(self, db: &dyn HirDatabase) -> Option<Name> {
|
||||||
db.static_data(self.id).name.clone()
|
db.static_data(self.id).name.clone()
|
||||||
}
|
}
|
||||||
|
@ -1111,10 +1088,6 @@ impl TypeAlias {
|
||||||
Module { id: self.id.lookup(db.upcast()).module(db.upcast()) }
|
Module { id: self.id.lookup(db.upcast()).module(db.upcast()) }
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn krate(self, db: &dyn HirDatabase) -> Crate {
|
|
||||||
self.module(db).krate()
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn type_ref(self, db: &dyn HirDatabase) -> Option<TypeRef> {
|
pub fn type_ref(self, db: &dyn HirDatabase) -> Option<TypeRef> {
|
||||||
db.type_alias_data(self.id).type_ref.as_deref().cloned()
|
db.type_alias_data(self.id).type_ref.as_deref().cloned()
|
||||||
}
|
}
|
||||||
|
@ -1666,10 +1639,6 @@ impl Impl {
|
||||||
self.id.lookup(db.upcast()).container.into()
|
self.id.lookup(db.upcast()).container.into()
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn krate(self, db: &dyn HirDatabase) -> Crate {
|
|
||||||
Crate { id: self.module(db).id.krate() }
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn is_builtin_derive(self, db: &dyn HirDatabase) -> Option<InFile<ast::Attr>> {
|
pub fn is_builtin_derive(self, db: &dyn HirDatabase) -> Option<InFile<ast::Attr>> {
|
||||||
let src = self.source(db)?;
|
let src = self.source(db)?;
|
||||||
let item = src.file_id.is_builtin_derive(db.upcast())?;
|
let item = src.file_id.is_builtin_derive(db.upcast())?;
|
||||||
|
|
|
@ -219,7 +219,7 @@ fn hint_iterator(
|
||||||
) -> Option<SmolStr> {
|
) -> Option<SmolStr> {
|
||||||
let db = sema.db;
|
let db = sema.db;
|
||||||
let strukt = ty.strip_references().as_adt()?;
|
let strukt = ty.strip_references().as_adt()?;
|
||||||
let krate = strukt.krate(db);
|
let krate = strukt.module(db).krate();
|
||||||
if krate != famous_defs.core()? {
|
if krate != famous_defs.core()? {
|
||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
|
|
|
@ -227,7 +227,7 @@ pub(crate) fn runnable_fn(sema: &Semantics<RootDatabase>, def: hir::Function) ->
|
||||||
let func = def.source(sema.db)?;
|
let func = def.source(sema.db)?;
|
||||||
let name_string = def.name(sema.db).to_string();
|
let name_string = def.name(sema.db).to_string();
|
||||||
|
|
||||||
let root = def.krate(sema.db)?.root_module(sema.db);
|
let root = def.module(sema.db).krate().root_module(sema.db);
|
||||||
|
|
||||||
let kind = if name_string == "main" && def.module(sema.db) == root {
|
let kind = if name_string == "main" && def.module(sema.db) == root {
|
||||||
RunnableKind::Bin
|
RunnableKind::Bin
|
||||||
|
|
|
@ -80,6 +80,7 @@ pub(crate) fn highlight(
|
||||||
&mut hl,
|
&mut hl,
|
||||||
&sema,
|
&sema,
|
||||||
InFile::new(file_id.into(), &root),
|
InFile::new(file_id.into(), &root),
|
||||||
|
sema.scope(&root).krate(),
|
||||||
range_to_highlight,
|
range_to_highlight,
|
||||||
syntactic_name_ref_highlighting,
|
syntactic_name_ref_highlighting,
|
||||||
);
|
);
|
||||||
|
@ -90,6 +91,7 @@ fn traverse(
|
||||||
hl: &mut Highlights,
|
hl: &mut Highlights,
|
||||||
sema: &Semantics<RootDatabase>,
|
sema: &Semantics<RootDatabase>,
|
||||||
root: InFile<&SyntaxNode>,
|
root: InFile<&SyntaxNode>,
|
||||||
|
krate: Option<hir::Crate>,
|
||||||
range_to_highlight: TextRange,
|
range_to_highlight: TextRange,
|
||||||
syntactic_name_ref_highlighting: bool,
|
syntactic_name_ref_highlighting: bool,
|
||||||
) {
|
) {
|
||||||
|
@ -209,6 +211,7 @@ fn traverse(
|
||||||
|
|
||||||
if let Some((mut highlight, binding_hash)) = highlight::element(
|
if let Some((mut highlight, binding_hash)) = highlight::element(
|
||||||
&sema,
|
&sema,
|
||||||
|
krate,
|
||||||
&mut bindings_shadow_count,
|
&mut bindings_shadow_count,
|
||||||
syntactic_name_ref_highlighting,
|
syntactic_name_ref_highlighting,
|
||||||
element_to_highlight.clone(),
|
element_to_highlight.clone(),
|
||||||
|
|
|
@ -19,6 +19,7 @@ use crate::{
|
||||||
|
|
||||||
pub(super) fn element(
|
pub(super) fn element(
|
||||||
sema: &Semantics<RootDatabase>,
|
sema: &Semantics<RootDatabase>,
|
||||||
|
krate: Option<hir::Crate>,
|
||||||
bindings_shadow_count: &mut FxHashMap<hir::Name, u32>,
|
bindings_shadow_count: &mut FxHashMap<hir::Name, u32>,
|
||||||
syntactic_name_ref_highlighting: bool,
|
syntactic_name_ref_highlighting: bool,
|
||||||
element: SyntaxElement,
|
element: SyntaxElement,
|
||||||
|
@ -46,8 +47,10 @@ pub(super) fn element(
|
||||||
|
|
||||||
match name_kind {
|
match name_kind {
|
||||||
Some(NameClass::ExternCrate(_)) => SymbolKind::Module.into(),
|
Some(NameClass::ExternCrate(_)) => SymbolKind::Module.into(),
|
||||||
Some(NameClass::Definition(def)) => highlight_def(db, def) | HlMod::Definition,
|
Some(NameClass::Definition(def)) => {
|
||||||
Some(NameClass::ConstReference(def)) => highlight_def(db, def),
|
highlight_def(db, krate, def) | HlMod::Definition
|
||||||
|
}
|
||||||
|
Some(NameClass::ConstReference(def)) => highlight_def(db, krate, def),
|
||||||
Some(NameClass::PatFieldShorthand { field_ref, .. }) => {
|
Some(NameClass::PatFieldShorthand { field_ref, .. }) => {
|
||||||
let mut h = HlTag::Symbol(SymbolKind::Field).into();
|
let mut h = HlTag::Symbol(SymbolKind::Field).into();
|
||||||
if let Definition::Field(field) = field_ref {
|
if let Definition::Field(field) = field_ref {
|
||||||
|
@ -82,7 +85,7 @@ pub(super) fn element(
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
let mut h = highlight_def(db, def);
|
let mut h = highlight_def(db, krate, def);
|
||||||
|
|
||||||
if let Definition::Local(local) = &def {
|
if let Definition::Local(local) = &def {
|
||||||
if is_consumed_lvalue(name_ref.syntax().clone().into(), local, db) {
|
if is_consumed_lvalue(name_ref.syntax().clone().into(), local, db) {
|
||||||
|
@ -136,9 +139,11 @@ pub(super) fn element(
|
||||||
let lifetime = element.into_node().and_then(ast::Lifetime::cast).unwrap();
|
let lifetime = element.into_node().and_then(ast::Lifetime::cast).unwrap();
|
||||||
|
|
||||||
match NameClass::classify_lifetime(sema, &lifetime) {
|
match NameClass::classify_lifetime(sema, &lifetime) {
|
||||||
Some(NameClass::Definition(def)) => highlight_def(db, def) | HlMod::Definition,
|
Some(NameClass::Definition(def)) => {
|
||||||
|
highlight_def(db, krate, def) | HlMod::Definition
|
||||||
|
}
|
||||||
None => match NameRefClass::classify_lifetime(sema, &lifetime) {
|
None => match NameRefClass::classify_lifetime(sema, &lifetime) {
|
||||||
Some(NameRefClass::Definition(def)) => highlight_def(db, def),
|
Some(NameRefClass::Definition(def)) => highlight_def(db, krate, def),
|
||||||
_ => SymbolKind::LifetimeParam.into(),
|
_ => SymbolKind::LifetimeParam.into(),
|
||||||
},
|
},
|
||||||
_ => Highlight::from(SymbolKind::LifetimeParam) | HlMod::Definition,
|
_ => Highlight::from(SymbolKind::LifetimeParam) | HlMod::Definition,
|
||||||
|
@ -277,12 +282,12 @@ pub(super) fn element(
|
||||||
hash((name, shadow_count))
|
hash((name, shadow_count))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
fn highlight_def(db: &RootDatabase, def: Definition) -> Highlight {
|
fn highlight_def(db: &RootDatabase, krate: Option<hir::Crate>, def: Definition) -> Highlight {
|
||||||
match def {
|
let mut h = match def {
|
||||||
Definition::Macro(_) => HlTag::Symbol(SymbolKind::Macro),
|
Definition::Macro(_) => Highlight::new(HlTag::Symbol(SymbolKind::Macro)),
|
||||||
Definition::Field(_) => HlTag::Symbol(SymbolKind::Field),
|
Definition::Field(_) => Highlight::new(HlTag::Symbol(SymbolKind::Field)),
|
||||||
Definition::ModuleDef(def) => match def {
|
Definition::ModuleDef(def) => match def {
|
||||||
hir::ModuleDef::Module(_) => HlTag::Symbol(SymbolKind::Module),
|
hir::ModuleDef::Module(_) => Highlight::new(HlTag::Symbol(SymbolKind::Module)),
|
||||||
hir::ModuleDef::Function(func) => {
|
hir::ModuleDef::Function(func) => {
|
||||||
let mut h = Highlight::new(HlTag::Symbol(SymbolKind::Function));
|
let mut h = Highlight::new(HlTag::Symbol(SymbolKind::Function));
|
||||||
if let Some(item) = func.as_assoc_item(db) {
|
if let Some(item) = func.as_assoc_item(db) {
|
||||||
|
@ -314,14 +319,22 @@ fn highlight_def(db: &RootDatabase, def: Definition) -> Highlight {
|
||||||
if func.is_async(db) {
|
if func.is_async(db) {
|
||||||
h |= HlMod::Async;
|
h |= HlMod::Async;
|
||||||
}
|
}
|
||||||
return h;
|
|
||||||
|
h
|
||||||
}
|
}
|
||||||
hir::ModuleDef::Adt(hir::Adt::Struct(_)) => HlTag::Symbol(SymbolKind::Struct),
|
hir::ModuleDef::Adt(adt) => {
|
||||||
hir::ModuleDef::Adt(hir::Adt::Enum(_)) => HlTag::Symbol(SymbolKind::Enum),
|
let h = match adt {
|
||||||
hir::ModuleDef::Adt(hir::Adt::Union(_)) => HlTag::Symbol(SymbolKind::Union),
|
hir::Adt::Struct(_) => HlTag::Symbol(SymbolKind::Struct),
|
||||||
hir::ModuleDef::Variant(_) => HlTag::Symbol(SymbolKind::Variant),
|
hir::Adt::Enum(_) => HlTag::Symbol(SymbolKind::Enum),
|
||||||
|
hir::Adt::Union(_) => HlTag::Symbol(SymbolKind::Union),
|
||||||
|
};
|
||||||
|
|
||||||
|
Highlight::new(h)
|
||||||
|
}
|
||||||
|
hir::ModuleDef::Variant(_) => Highlight::new(HlTag::Symbol(SymbolKind::Variant)),
|
||||||
hir::ModuleDef::Const(konst) => {
|
hir::ModuleDef::Const(konst) => {
|
||||||
let mut h = Highlight::new(HlTag::Symbol(SymbolKind::Const));
|
let mut h = Highlight::new(HlTag::Symbol(SymbolKind::Const));
|
||||||
|
|
||||||
if let Some(item) = konst.as_assoc_item(db) {
|
if let Some(item) = konst.as_assoc_item(db) {
|
||||||
h |= HlMod::Associated;
|
h |= HlMod::Associated;
|
||||||
match item.container(db) {
|
match item.container(db) {
|
||||||
|
@ -336,7 +349,7 @@ fn highlight_def(db: &RootDatabase, def: Definition) -> Highlight {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return h;
|
h
|
||||||
}
|
}
|
||||||
hir::ModuleDef::Trait(trait_) => {
|
hir::ModuleDef::Trait(trait_) => {
|
||||||
let mut h = Highlight::new(HlTag::Symbol(SymbolKind::Trait));
|
let mut h = Highlight::new(HlTag::Symbol(SymbolKind::Trait));
|
||||||
|
@ -344,10 +357,12 @@ fn highlight_def(db: &RootDatabase, def: Definition) -> Highlight {
|
||||||
if trait_.is_unsafe(db) {
|
if trait_.is_unsafe(db) {
|
||||||
h |= HlMod::Unsafe;
|
h |= HlMod::Unsafe;
|
||||||
}
|
}
|
||||||
return h;
|
|
||||||
|
h
|
||||||
}
|
}
|
||||||
hir::ModuleDef::TypeAlias(type_) => {
|
hir::ModuleDef::TypeAlias(type_) => {
|
||||||
let mut h = Highlight::new(HlTag::Symbol(SymbolKind::TypeAlias));
|
let mut h = Highlight::new(HlTag::Symbol(SymbolKind::TypeAlias));
|
||||||
|
|
||||||
if let Some(item) = type_.as_assoc_item(db) {
|
if let Some(item) = type_.as_assoc_item(db) {
|
||||||
h |= HlMod::Associated;
|
h |= HlMod::Associated;
|
||||||
match item.container(db) {
|
match item.container(db) {
|
||||||
|
@ -361,23 +376,30 @@ fn highlight_def(db: &RootDatabase, def: Definition) -> Highlight {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return h;
|
|
||||||
|
h
|
||||||
}
|
}
|
||||||
hir::ModuleDef::BuiltinType(_) => HlTag::BuiltinType,
|
hir::ModuleDef::BuiltinType(_) => Highlight::new(HlTag::BuiltinType),
|
||||||
hir::ModuleDef::Static(s) => {
|
hir::ModuleDef::Static(s) => {
|
||||||
let mut h = Highlight::new(HlTag::Symbol(SymbolKind::Static));
|
let mut h = Highlight::new(HlTag::Symbol(SymbolKind::Static));
|
||||||
|
|
||||||
if s.is_mut(db) {
|
if s.is_mut(db) {
|
||||||
h |= HlMod::Mutable;
|
h |= HlMod::Mutable;
|
||||||
h |= HlMod::Unsafe;
|
h |= HlMod::Unsafe;
|
||||||
}
|
}
|
||||||
return h;
|
|
||||||
|
h
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
Definition::SelfType(_) => HlTag::Symbol(SymbolKind::Impl),
|
Definition::SelfType(_) => Highlight::new(HlTag::Symbol(SymbolKind::Impl)),
|
||||||
Definition::GenericParam(it) => match it {
|
Definition::GenericParam(it) => match it {
|
||||||
hir::GenericParam::TypeParam(_) => HlTag::Symbol(SymbolKind::TypeParam),
|
hir::GenericParam::TypeParam(_) => Highlight::new(HlTag::Symbol(SymbolKind::TypeParam)),
|
||||||
hir::GenericParam::ConstParam(_) => HlTag::Symbol(SymbolKind::ConstParam),
|
hir::GenericParam::ConstParam(_) => {
|
||||||
hir::GenericParam::LifetimeParam(_) => HlTag::Symbol(SymbolKind::LifetimeParam),
|
Highlight::new(HlTag::Symbol(SymbolKind::ConstParam))
|
||||||
|
}
|
||||||
|
hir::GenericParam::LifetimeParam(_) => {
|
||||||
|
Highlight::new(HlTag::Symbol(SymbolKind::LifetimeParam))
|
||||||
|
}
|
||||||
},
|
},
|
||||||
Definition::Local(local) => {
|
Definition::Local(local) => {
|
||||||
let tag = if local.is_self(db) {
|
let tag = if local.is_self(db) {
|
||||||
|
@ -395,11 +417,19 @@ fn highlight_def(db: &RootDatabase, def: Definition) -> Highlight {
|
||||||
if ty.as_callable(db).is_some() || ty.impls_fnonce(db) {
|
if ty.as_callable(db).is_some() || ty.impls_fnonce(db) {
|
||||||
h |= HlMod::Callable;
|
h |= HlMod::Callable;
|
||||||
}
|
}
|
||||||
return h;
|
h
|
||||||
}
|
}
|
||||||
Definition::Label(_) => HlTag::Symbol(SymbolKind::Label),
|
Definition::Label(_) => Highlight::new(HlTag::Symbol(SymbolKind::Label)),
|
||||||
|
};
|
||||||
|
|
||||||
|
let is_from_other_crate = def.module(db).map(hir::Module::krate) != krate;
|
||||||
|
let is_builtin_type = matches!(def, Definition::ModuleDef(hir::ModuleDef::BuiltinType(_)));
|
||||||
|
|
||||||
|
if is_from_other_crate && !is_builtin_type {
|
||||||
|
h |= HlMod::Library;
|
||||||
}
|
}
|
||||||
.into()
|
|
||||||
|
h
|
||||||
}
|
}
|
||||||
|
|
||||||
fn highlight_func_by_name_ref(
|
fn highlight_func_by_name_ref(
|
||||||
|
|
|
@ -67,6 +67,8 @@ pub enum HlMod {
|
||||||
Trait,
|
Trait,
|
||||||
/// Used with keywords like `async` and `await`.
|
/// Used with keywords like `async` and `await`.
|
||||||
Async,
|
Async,
|
||||||
|
/// Used for items from other crates.
|
||||||
|
Library,
|
||||||
// Keep this last!
|
// Keep this last!
|
||||||
/// Used for unsafe functions, unsafe traits, mutable statics, union accesses and unsafe operations.
|
/// Used for unsafe functions, unsafe traits, mutable statics, union accesses and unsafe operations.
|
||||||
Unsafe,
|
Unsafe,
|
||||||
|
@ -189,6 +191,7 @@ impl HlMod {
|
||||||
HlMod::Static,
|
HlMod::Static,
|
||||||
HlMod::Trait,
|
HlMod::Trait,
|
||||||
HlMod::Async,
|
HlMod::Async,
|
||||||
|
HlMod::Library,
|
||||||
HlMod::Unsafe,
|
HlMod::Unsafe,
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -207,6 +210,7 @@ impl HlMod {
|
||||||
HlMod::Static => "static",
|
HlMod::Static => "static",
|
||||||
HlMod::Trait => "trait",
|
HlMod::Trait => "trait",
|
||||||
HlMod::Async => "async",
|
HlMod::Async => "async",
|
||||||
|
HlMod::Library => "library",
|
||||||
HlMod::Unsafe => "unsafe",
|
HlMod::Unsafe => "unsafe",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -248,4 +248,20 @@ pre { color: #DCDCCC; background: #3F3F3F; font-size: 22px; padd
|
||||||
<span class="brace">}</span>
|
<span class="brace">}</span>
|
||||||
|
|
||||||
<span class="keyword unsafe">unsafe</span> <span class="keyword">trait</span> <span class="trait declaration unsafe">Dangerous</span> <span class="brace">{</span><span class="brace">}</span>
|
<span class="keyword unsafe">unsafe</span> <span class="keyword">trait</span> <span class="trait declaration unsafe">Dangerous</span> <span class="brace">{</span><span class="brace">}</span>
|
||||||
<span class="keyword">impl</span> <span class="trait unsafe">Dangerous</span> <span class="keyword">for</span> <span class="parenthesis">(</span><span class="parenthesis">)</span> <span class="brace">{</span><span class="brace">}</span></code></pre>
|
<span class="keyword">impl</span> <span class="trait unsafe">Dangerous</span> <span class="keyword">for</span> <span class="parenthesis">(</span><span class="parenthesis">)</span> <span class="brace">{</span><span class="brace">}</span>
|
||||||
|
|
||||||
|
<span class="keyword">fn</span> <span class="function declaration">use_foo_items</span><span class="parenthesis">(</span><span class="parenthesis">)</span> <span class="brace">{</span>
|
||||||
|
<span class="keyword">let</span> <span class="variable declaration">bob</span> <span class="operator">=</span> <span class="module library">foo</span><span class="operator">::</span><span class="struct library">Person</span> <span class="brace">{</span>
|
||||||
|
<span class="field library">name</span><span class="colon">:</span> <span class="string_literal">"Bob"</span><span class="comma">,</span>
|
||||||
|
<span class="field library">age</span><span class="colon">:</span> <span class="module library">foo</span><span class="operator">::</span><span class="module library">consts</span><span class="operator">::</span><span class="constant library">NUMBER</span><span class="comma">,</span>
|
||||||
|
<span class="brace">}</span><span class="semicolon">;</span>
|
||||||
|
|
||||||
|
<span class="keyword">let</span> <span class="variable declaration">control_flow</span> <span class="operator">=</span> <span class="module library">foo</span><span class="operator">::</span><span class="function library">identity</span><span class="parenthesis">(</span><span class="module library">foo</span><span class="operator">::</span><span class="enum library">ControlFlow</span><span class="operator">::</span><span class="enum_variant library">Continue</span><span class="parenthesis">)</span><span class="semicolon">;</span>
|
||||||
|
|
||||||
|
<span class="keyword control">if</span> <span class="keyword">let</span> <span class="module library">foo</span><span class="operator">::</span><span class="enum library">ControlFlow</span><span class="operator">::</span><span class="enum_variant library">Die</span> <span class="operator">=</span> <span class="variable">control_flow</span> <span class="brace">{</span>
|
||||||
|
foo::<span class="macro">die!</span><span class="parenthesis">(</span><span class="parenthesis">)</span><span class="semicolon">;</span>
|
||||||
|
<span class="brace">}</span>
|
||||||
|
<span class="brace">}</span>
|
||||||
|
|
||||||
|
|
||||||
|
</code></pre>
|
|
@ -10,6 +10,7 @@ use crate::{fixture, FileRange, HlTag, TextRange};
|
||||||
fn test_highlighting() {
|
fn test_highlighting() {
|
||||||
check_highlighting(
|
check_highlighting(
|
||||||
r#"
|
r#"
|
||||||
|
//- /main.rs crate:main deps:foo
|
||||||
use inner::{self as inner_mod};
|
use inner::{self as inner_mod};
|
||||||
mod inner {}
|
mod inner {}
|
||||||
|
|
||||||
|
@ -222,6 +223,43 @@ async fn async_main() {
|
||||||
|
|
||||||
unsafe trait Dangerous {}
|
unsafe trait Dangerous {}
|
||||||
impl Dangerous for () {}
|
impl Dangerous for () {}
|
||||||
|
|
||||||
|
fn use_foo_items() {
|
||||||
|
let bob = foo::Person {
|
||||||
|
name: "Bob",
|
||||||
|
age: foo::consts::NUMBER,
|
||||||
|
};
|
||||||
|
|
||||||
|
let control_flow = foo::identity(foo::ControlFlow::Continue);
|
||||||
|
|
||||||
|
if let foo::ControlFlow::Die = control_flow {
|
||||||
|
foo::die!();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//- /foo.rs crate:foo
|
||||||
|
pub struct Person {
|
||||||
|
pub name: &'static str,
|
||||||
|
pub age: u8,
|
||||||
|
}
|
||||||
|
|
||||||
|
pub enum ControlFlow {
|
||||||
|
Continue,
|
||||||
|
Die,
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn identity<T>(x: T) -> T { x }
|
||||||
|
|
||||||
|
pub mod consts {
|
||||||
|
pub const NUMBER: i64 = 92;
|
||||||
|
}
|
||||||
|
|
||||||
|
macro_rules! die {
|
||||||
|
() => {
|
||||||
|
panic!();
|
||||||
|
};
|
||||||
|
}
|
||||||
"#
|
"#
|
||||||
.trim(),
|
.trim(),
|
||||||
expect_file!["./test_data/highlighting.html"],
|
expect_file!["./test_data/highlighting.html"],
|
||||||
|
|
|
@ -92,6 +92,7 @@ define_semantic_token_modifiers![
|
||||||
(MUTABLE, "mutable"),
|
(MUTABLE, "mutable"),
|
||||||
(CONSUMING, "consuming"),
|
(CONSUMING, "consuming"),
|
||||||
(ASYNC, "async"),
|
(ASYNC, "async"),
|
||||||
|
(LIBRARY, "library"),
|
||||||
(UNSAFE, "unsafe"),
|
(UNSAFE, "unsafe"),
|
||||||
(ATTRIBUTE_MODIFIER, "attribute"),
|
(ATTRIBUTE_MODIFIER, "attribute"),
|
||||||
(TRAIT_MODIFIER, "trait"),
|
(TRAIT_MODIFIER, "trait"),
|
||||||
|
|
|
@ -504,6 +504,7 @@ fn semantic_token_type_and_modifiers(
|
||||||
HlMod::Mutable => semantic_tokens::MUTABLE,
|
HlMod::Mutable => semantic_tokens::MUTABLE,
|
||||||
HlMod::Consuming => semantic_tokens::CONSUMING,
|
HlMod::Consuming => semantic_tokens::CONSUMING,
|
||||||
HlMod::Async => semantic_tokens::ASYNC,
|
HlMod::Async => semantic_tokens::ASYNC,
|
||||||
|
HlMod::Library => semantic_tokens::LIBRARY,
|
||||||
HlMod::Unsafe => semantic_tokens::UNSAFE,
|
HlMod::Unsafe => semantic_tokens::UNSAFE,
|
||||||
HlMod::Callable => semantic_tokens::CALLABLE,
|
HlMod::Callable => semantic_tokens::CALLABLE,
|
||||||
HlMod::Static => lsp_types::SemanticTokenModifier::STATIC,
|
HlMod::Static => lsp_types::SemanticTokenModifier::STATIC,
|
||||||
|
|
Loading…
Reference in a new issue