From 87aa746ed2820d401975534a33454d16c0034ee2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lauren=C8=9Biu=20Nicola?= Date: Mon, 25 May 2020 11:39:56 +0300 Subject: Add boolean literals to package.json --- editors/code/package.json | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'editors') diff --git a/editors/code/package.json b/editors/code/package.json index 2f14eaebd..0e6755a32 100644 --- a/editors/code/package.json +++ b/editors/code/package.json @@ -586,6 +586,11 @@ "id": "attribute", "description": "Style for attributes" }, + { + "id": "boolean", + "description": "Style for boolean literals", + "superType": "keyword" + }, { "id": "builtinType", "description": "Style for builtin types", -- cgit v1.2.3 From c2358365ad0b82d4a5f023192ee0ab2c198d6aee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lauren=C8=9Biu=20Nicola?= Date: Mon, 25 May 2020 11:51:56 +0300 Subject: Add self keyword semantic token type --- editors/code/package.json | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'editors') diff --git a/editors/code/package.json b/editors/code/package.json index 2f14eaebd..3127e6a30 100644 --- a/editors/code/package.json +++ b/editors/code/package.json @@ -595,6 +595,11 @@ "id": "lifetime", "description": "Style for lifetimes" }, + { + "id": "selfKeyword", + "description": "Style for the self keyword", + "superType": "keyword" + }, { "id": "typeAlias", "description": "Style for type aliases", -- cgit v1.2.3