IncludeCPP 3.6.0__py3-none-any.whl → 3.7.9__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- includecpp/__init__.py +1 -1
- includecpp/cli/commands.py +590 -11
- includecpp/core/cssl/CSSL_DOCUMENTATION.md +301 -20
- includecpp/core/cssl/cssl_builtins.py +114 -0
- includecpp/core/cssl/cssl_builtins.pyi +1393 -0
- includecpp/core/cssl/cssl_parser.py +348 -70
- includecpp/core/cssl/cssl_runtime.py +456 -16
- includecpp/core/cssl/cssl_types.py +224 -2
- includecpp/core/cssl_bridge.py +477 -48
- includecpp/vscode/cssl/language-configuration.json +1 -4
- includecpp/vscode/cssl/package.json +24 -4
- includecpp/vscode/cssl/snippets/cssl.snippets.json +1080 -0
- includecpp/vscode/cssl/syntaxes/cssl.tmLanguage.json +298 -17
- {includecpp-3.6.0.dist-info → includecpp-3.7.9.dist-info}/METADATA +1 -1
- {includecpp-3.6.0.dist-info → includecpp-3.7.9.dist-info}/RECORD +19 -17
- {includecpp-3.6.0.dist-info → includecpp-3.7.9.dist-info}/WHEEL +0 -0
- {includecpp-3.6.0.dist-info → includecpp-3.7.9.dist-info}/entry_points.txt +0 -0
- {includecpp-3.6.0.dist-info → includecpp-3.7.9.dist-info}/licenses/LICENSE +0 -0
- {includecpp-3.6.0.dist-info → includecpp-3.7.9.dist-info}/top_level.txt +0 -0
|
@@ -6,14 +6,12 @@
|
|
|
6
6
|
"brackets": [
|
|
7
7
|
["{", "}"],
|
|
8
8
|
["[", "]"],
|
|
9
|
-
["(", ")"]
|
|
10
|
-
["<", ">"]
|
|
9
|
+
["(", ")"]
|
|
11
10
|
],
|
|
12
11
|
"autoClosingPairs": [
|
|
13
12
|
{ "open": "{", "close": "}" },
|
|
14
13
|
{ "open": "[", "close": "]" },
|
|
15
14
|
{ "open": "(", "close": ")" },
|
|
16
|
-
{ "open": "<", "close": ">" },
|
|
17
15
|
{ "open": "\"", "close": "\"", "notIn": ["string"] },
|
|
18
16
|
{ "open": "'", "close": "'", "notIn": ["string", "comment"] }
|
|
19
17
|
],
|
|
@@ -21,7 +19,6 @@
|
|
|
21
19
|
["{", "}"],
|
|
22
20
|
["[", "]"],
|
|
23
21
|
["(", ")"],
|
|
24
|
-
["<", ">"],
|
|
25
22
|
["\"", "\""],
|
|
26
23
|
["'", "'"]
|
|
27
24
|
],
|
|
@@ -1,14 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cssl",
|
|
3
3
|
"displayName": "CSSL - CSO Service Script Language",
|
|
4
|
-
"description": "
|
|
5
|
-
"version": "1.
|
|
4
|
+
"description": "Professional syntax highlighting, snippets, and language support for CSSL scripts (.cssl, .cssl-pl, .cssl-mod)",
|
|
5
|
+
"version": "1.1.0",
|
|
6
6
|
"publisher": "IncludeCPP",
|
|
7
|
+
"icon": "images/cssl-icon.png",
|
|
7
8
|
"engines": {
|
|
8
9
|
"vscode": "^1.60.0"
|
|
9
10
|
},
|
|
10
11
|
"categories": [
|
|
11
|
-
"Programming Languages"
|
|
12
|
+
"Programming Languages",
|
|
13
|
+
"Snippets"
|
|
14
|
+
],
|
|
15
|
+
"keywords": [
|
|
16
|
+
"cssl",
|
|
17
|
+
"cso",
|
|
18
|
+
"script",
|
|
19
|
+
"includecpp",
|
|
20
|
+
"c++",
|
|
21
|
+
"python"
|
|
12
22
|
],
|
|
13
23
|
"contributes": {
|
|
14
24
|
"languages": [
|
|
@@ -16,7 +26,11 @@
|
|
|
16
26
|
"id": "cssl",
|
|
17
27
|
"aliases": ["CSSL", "cssl", "CSO Service Script"],
|
|
18
28
|
"extensions": [".cssl", ".cssl-pl", ".cssl-mod"],
|
|
19
|
-
"configuration": "./language-configuration.json"
|
|
29
|
+
"configuration": "./language-configuration.json",
|
|
30
|
+
"icon": {
|
|
31
|
+
"light": "./images/cssl-icon.png",
|
|
32
|
+
"dark": "./images/cssl-icon.png"
|
|
33
|
+
}
|
|
20
34
|
}
|
|
21
35
|
],
|
|
22
36
|
"grammars": [
|
|
@@ -25,6 +39,12 @@
|
|
|
25
39
|
"scopeName": "source.cssl",
|
|
26
40
|
"path": "./syntaxes/cssl.tmLanguage.json"
|
|
27
41
|
}
|
|
42
|
+
],
|
|
43
|
+
"snippets": [
|
|
44
|
+
{
|
|
45
|
+
"language": "cssl",
|
|
46
|
+
"path": "./snippets/cssl.snippets.json"
|
|
47
|
+
}
|
|
28
48
|
]
|
|
29
49
|
}
|
|
30
50
|
}
|