mirror of
https://github.com/SymboScript/symboscript-vs.git
synced 2024-11-22 13:16:23 +03:00
feat: delete new try catch finally
This commit is contained in:
parent
2bfeb03382
commit
b316b7cc7f
2 changed files with 6 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
||||||
"name": "symboscript-vs",
|
"name": "symboscript-vs",
|
||||||
"displayName": "SymboScript-vs",
|
"displayName": "SymboScript-vs",
|
||||||
"description": "Official language support for SymboScrypt",
|
"description": "Official language support for SymboScrypt",
|
||||||
"version": "0.1.3",
|
"version": "0.2.0",
|
||||||
"publisher": "symboscript",
|
"publisher": "symboscript",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
|
@ -76,7 +76,7 @@
|
||||||
"patterns": [
|
"patterns": [
|
||||||
{
|
{
|
||||||
"name": "keyword.control.symboscript",
|
"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",
|
"name": "keyword.other.fn.symboscript",
|
||||||
|
@ -94,6 +94,10 @@
|
||||||
"name": "keyword.other.bool.symboscript",
|
"name": "keyword.other.bool.symboscript",
|
||||||
"match": "\\b(true|false)\\b"
|
"match": "\\b(true|false)\\b"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "keyword.other.try-catch.symboscript",
|
||||||
|
"match": "\\b(try|catch|finally)\\b"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"comment": "logical operators",
|
"comment": "logical operators",
|
||||||
"name": "keyword.operator.logical.symboscript",
|
"name": "keyword.operator.logical.symboscript",
|
||||||
|
|
Loading…
Add table
Reference in a new issue