diff options
author | Aleksey Kladov <[email protected]> | 2020-04-03 11:24:11 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-04-03 13:09:12 +0100 |
commit | 2a968d455406caa9ff0c7fa59e70153aac8b0999 (patch) | |
tree | 282da980e5f362f2d34dfae076faf62070e11733 /editors/code | |
parent | ac91de1525662a602a1057709eb91a9b21ea3ac7 (diff) |
Set semantic tokens supertypes
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": [ |