mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 13:03:31 +00:00
Set semantic tokens supertypes
This commit is contained in:
parent
ac91de1525
commit
2a968d4554
1 changed files with 6 additions and 3 deletions
|
@ -488,7 +488,8 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "builtinType",
|
"id": "builtinType",
|
||||||
"description": "Style for builtin types"
|
"description": "Style for builtin types",
|
||||||
|
"superType": "type"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "lifetime",
|
"id": "lifetime",
|
||||||
|
@ -496,11 +497,13 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "typeAlias",
|
"id": "typeAlias",
|
||||||
"description": "Style for type aliases"
|
"description": "Style for type aliases",
|
||||||
|
"superType": "type"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "union",
|
"id": "union",
|
||||||
"description": "Style for C-style untagged unions"
|
"description": "Style for C-style untagged unions",
|
||||||
|
"superType": "type"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"semanticTokenModifiers": [
|
"semanticTokenModifiers": [
|
||||||
|
|
Loading…
Reference in a new issue