diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-04-03 13:16:40 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-04-03 13:16:40 +0100 |
commit | 795b8cf9c5a6f3be4117823c896f41d1a4455079 (patch) | |
tree | 7dabb4c41169a518e03eefce480edf3b90c93037 /editors/code | |
parent | 1a8779bce07281f1fbde1166ded75bc5acaa0f27 (diff) | |
parent | 2a968d455406caa9ff0c7fa59e70153aac8b0999 (diff) |
Merge #3834
3834: Set semantic tokens supertypes r=matklad a=matklad
bors r+
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'editors/code')
-rw-r--r-- | editors/code/package.json | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/editors/code/package.json b/editors/code/package.json index 88b7ee86a..595d6e378 100644 --- a/editors/code/package.json +++ b/editors/code/package.json | |||
@@ -488,7 +488,8 @@ | |||
488 | }, | 488 | }, |
489 | { | 489 | { |
490 | "id": "builtinType", | 490 | "id": "builtinType", |
491 | "description": "Style for builtin types" | 491 | "description": "Style for builtin types", |
492 | "superType": "type" | ||
492 | }, | 493 | }, |
493 | { | 494 | { |
494 | "id": "lifetime", | 495 | "id": "lifetime", |
@@ -496,11 +497,13 @@ | |||
496 | }, | 497 | }, |
497 | { | 498 | { |
498 | "id": "typeAlias", | 499 | "id": "typeAlias", |
499 | "description": "Style for type aliases" | 500 | "description": "Style for type aliases", |
501 | "superType": "type" | ||
500 | }, | 502 | }, |
501 | { | 503 | { |
502 | "id": "union", | 504 | "id": "union", |
503 | "description": "Style for C-style untagged unions" | 505 | "description": "Style for C-style untagged unions", |
506 | "superType": "type" | ||
504 | } | 507 | } |
505 | ], | 508 | ], |
506 | "semanticTokenModifiers": [ | 509 | "semanticTokenModifiers": [ |