From b316b7cc7f19d0047a343f853445c84d2e1a6139 Mon Sep 17 00:00:00 2001 From: Artemy Date: Sun, 31 Dec 2023 18:47:10 +0300 Subject: [PATCH] feat: delete new try catch finally --- package.json | 2 +- syntaxes/symboscript.tmLanguage.json | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index b5a5a8c..3bcbbe0 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "symboscript-vs", "displayName": "SymboScript-vs", "description": "Official language support for SymboScrypt", - "version": "0.1.3", + "version": "0.2.0", "publisher": "symboscript", "license": "MIT", "repository": { diff --git a/syntaxes/symboscript.tmLanguage.json b/syntaxes/symboscript.tmLanguage.json index 5aca3e7..dc33e4a 100644 --- a/syntaxes/symboscript.tmLanguage.json +++ b/syntaxes/symboscript.tmLanguage.json @@ -76,7 +76,7 @@ "patterns": [ { "name": "keyword.control.symboscript", - "match": "\\b(if|else|while|for|loop|return|yield|await|break|continue|in)\\b" + "match": "\\b(if|else|while|for|loop|return|yield|await|delete|new|break|continue|in)\\b" }, { "name": "keyword.other.fn.symboscript", @@ -94,6 +94,10 @@ "name": "keyword.other.bool.symboscript", "match": "\\b(true|false)\\b" }, + { + "name": "keyword.other.try-catch.symboscript", + "match": "\\b(try|catch|finally)\\b" + }, { "comment": "logical operators", "name": "keyword.operator.logical.symboscript",