IncludeCPP 3.8.8__py3-none-any.whl → 4.0.0__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/core/cssl/CSSL_DOCUMENTATION.md +877 -1781
- includecpp/core/cssl/CSSL_DOCUMENTATION_NEW.md +1348 -0
- includecpp/core/cssl/cssl_builtins.pyi +231 -0
- includecpp/core/cssl/cssl_parser.py +439 -94
- includecpp/core/cssl/cssl_runtime.py +498 -27
- includecpp/vscode/cssl/syntaxes/cssl.tmLanguage.json +25 -0
- {includecpp-3.8.8.dist-info → includecpp-4.0.0.dist-info}/METADATA +1 -1
- {includecpp-3.8.8.dist-info → includecpp-4.0.0.dist-info}/RECORD +13 -12
- {includecpp-3.8.8.dist-info → includecpp-4.0.0.dist-info}/WHEEL +0 -0
- {includecpp-3.8.8.dist-info → includecpp-4.0.0.dist-info}/entry_points.txt +0 -0
- {includecpp-3.8.8.dist-info → includecpp-4.0.0.dist-info}/licenses/LICENSE +0 -0
- {includecpp-3.8.8.dist-info → includecpp-4.0.0.dist-info}/top_level.txt +0 -0
|
@@ -7,6 +7,8 @@
|
|
|
7
7
|
{ "include": "#comments" },
|
|
8
8
|
{ "include": "#strings" },
|
|
9
9
|
{ "include": "#numbers" },
|
|
10
|
+
{ "include": "#append-operator" },
|
|
11
|
+
{ "include": "#append-reference" },
|
|
10
12
|
{ "include": "#class-definition" },
|
|
11
13
|
{ "include": "#function-definitions" },
|
|
12
14
|
{ "include": "#constructor-definition" },
|
|
@@ -35,6 +37,29 @@
|
|
|
35
37
|
{ "include": "#variables" }
|
|
36
38
|
],
|
|
37
39
|
"repository": {
|
|
40
|
+
"append-operator": {
|
|
41
|
+
"patterns": [
|
|
42
|
+
{
|
|
43
|
+
"comment": "++ append operator for constructor/function extension - orange",
|
|
44
|
+
"name": "constant.character.escape.infuse.cssl",
|
|
45
|
+
"match": "\\+\\+(?=\\s*\\{)"
|
|
46
|
+
}
|
|
47
|
+
]
|
|
48
|
+
},
|
|
49
|
+
"append-reference": {
|
|
50
|
+
"patterns": [
|
|
51
|
+
{
|
|
52
|
+
"comment": "&ClassName::member or &$var::member - all yellow for append reference",
|
|
53
|
+
"name": "entity.name.tag.super.cssl",
|
|
54
|
+
"match": "&(\\$?[a-zA-Z_][a-zA-Z0-9_]*)(::)([a-zA-Z_][a-zA-Z0-9_]*)"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"comment": "&FunctionName - yellow for direct function reference",
|
|
58
|
+
"name": "entity.name.tag.super.cssl",
|
|
59
|
+
"match": "&([a-zA-Z_][a-zA-Z0-9_]*)(?=\\s*\\+\\+)"
|
|
60
|
+
}
|
|
61
|
+
]
|
|
62
|
+
},
|
|
38
63
|
"non-null-declarations": {
|
|
39
64
|
"patterns": [
|
|
40
65
|
{
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
includecpp/__init__.py,sha256=
|
|
1
|
+
includecpp/__init__.py,sha256=8GF2-h-JB8QHeXVQnsZIwoXTxqOaUudycDZaivmIECw,1672
|
|
2
2
|
includecpp/__init__.pyi,sha256=uSDYlbqd2TinmrdepmE_zvN25jd3Co2cgyPzXgDpopM,7193
|
|
3
3
|
includecpp/__main__.py,sha256=d6QK0PkvUe1ENofpmHRAg3bwNbZr8PiRscfI3-WRfVg,72
|
|
4
4
|
includecpp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -19,14 +19,15 @@ includecpp/core/exceptions.py,sha256=szeF4qdzi_q8hBBZi7mJxkliyQ0crplkLYe0ymlBGtk
|
|
|
19
19
|
includecpp/core/path_discovery.py,sha256=jI0oSq6Hsd4LKXmU4dOiGSrXcEO_KWMXfQ5_ylBmXvU,2561
|
|
20
20
|
includecpp/core/project_ui.py,sha256=la2EQZKmUkJGuJxnbs09hH1ZhBh9bfndo6okzZsk2dQ,141134
|
|
21
21
|
includecpp/core/settings_ui.py,sha256=B2SlwgdplF2KiBk5UYf2l8Jjifjd0F-FmBP0DPsVCEQ,11798
|
|
22
|
-
includecpp/core/cssl/CSSL_DOCUMENTATION.md,sha256=
|
|
22
|
+
includecpp/core/cssl/CSSL_DOCUMENTATION.md,sha256=0zutiYNa-ohTzZ5fWsEgMD5ThOvyTwuMgmkzSBr7yrA,32491
|
|
23
|
+
includecpp/core/cssl/CSSL_DOCUMENTATION_NEW.md,sha256=I_bVeKWlbcgHYkl2o9L2vk3r5sDvG44bGh__RJIYduw,28222
|
|
23
24
|
includecpp/core/cssl/__init__.py,sha256=scDXRBNK2L6A8qmlpNyaqQj6BFcSfPInBlucdeNfMF0,1975
|
|
24
25
|
includecpp/core/cssl/cssl_builtins.py,sha256=oPsPyQk5b0b1I02Y80oIaDX39GOeG32-nBPEqwbo_Pw,105110
|
|
25
|
-
includecpp/core/cssl/cssl_builtins.pyi,sha256
|
|
26
|
+
includecpp/core/cssl/cssl_builtins.pyi,sha256=-yr9JbxHKFv9Vc1iufChcqCQvNQLL3-Ow_Hgg0YwQnc,135180
|
|
26
27
|
includecpp/core/cssl/cssl_events.py,sha256=nupIcXW_Vjdud7zCU6hdwkQRQ0MujlPM7Tk2u7eDAiY,21013
|
|
27
28
|
includecpp/core/cssl/cssl_modules.py,sha256=cUg0-zdymMnWWTsA_BUrW5dx4R04dHpKcUhm-Wfiwwo,103006
|
|
28
|
-
includecpp/core/cssl/cssl_parser.py,sha256=
|
|
29
|
-
includecpp/core/cssl/cssl_runtime.py,sha256=
|
|
29
|
+
includecpp/core/cssl/cssl_parser.py,sha256=Ur_V-dymhR4uKARA0EhgUWSvb_OaImuMZGjQpMv6ztI,153752
|
|
30
|
+
includecpp/core/cssl/cssl_runtime.py,sha256=dwExfARMSIfB5_KDvSGFtgW3hHEDFWWfTMmPtzDCUZE,200849
|
|
30
31
|
includecpp/core/cssl/cssl_syntax.py,sha256=bgo3NFehoPTQa5dqwNd_CstkVGVCNYAXbGYUcu5BEN0,16982
|
|
31
32
|
includecpp/core/cssl/cssl_types.py,sha256=7jbrtZf3xmVQJA_mnL9iYrmdjhjuc4--mxxNigi7fsk,53425
|
|
32
33
|
includecpp/generator/__init__.py,sha256=Rsy41bwimaEloD3gDRR_znPfIJzIsCFuWZgCTJBLJlc,62
|
|
@@ -43,10 +44,10 @@ includecpp/vscode/cssl/package.json,sha256=5MCJts7zYIgF8EdWcBnn98deIMyZamlGXvt1a
|
|
|
43
44
|
includecpp/vscode/cssl/images/cssl.png,sha256=BxAGsnfS0ZzzCvqV6Zb1OAJAZpDUoXlR86MsvUGlSZw,510
|
|
44
45
|
includecpp/vscode/cssl/images/cssl_pl.png,sha256=z4WMk7g6YCTbUUbSFk343BO6yi_OmNEVYkRenWGydwM,799
|
|
45
46
|
includecpp/vscode/cssl/snippets/cssl.snippets.json,sha256=uV3nHJyQ5f7Pr3FzfbQT2VZOEY3AlGs4wrmqe884jm4,37372
|
|
46
|
-
includecpp/vscode/cssl/syntaxes/cssl.tmLanguage.json,sha256=
|
|
47
|
-
includecpp-
|
|
48
|
-
includecpp-
|
|
49
|
-
includecpp-
|
|
50
|
-
includecpp-
|
|
51
|
-
includecpp-
|
|
52
|
-
includecpp-
|
|
47
|
+
includecpp/vscode/cssl/syntaxes/cssl.tmLanguage.json,sha256=FZw1_VDz1ll4ZBZeGqo-935CK5RuF2kD75rNp5tVdC0,35068
|
|
48
|
+
includecpp-4.0.0.dist-info/licenses/LICENSE,sha256=fWCsGGsiWZir0UzDd20Hh-3wtRyk1zqUntvtVuAWhvc,1093
|
|
49
|
+
includecpp-4.0.0.dist-info/METADATA,sha256=TNBirJeSnkl7V4PUESZSHJzkOboU8DGe_Qrykc-NmbQ,22510
|
|
50
|
+
includecpp-4.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
51
|
+
includecpp-4.0.0.dist-info/entry_points.txt,sha256=6A5Mif9gi0139Bf03W5plAb3wnAgbNaEVe1HJoGE-2o,59
|
|
52
|
+
includecpp-4.0.0.dist-info/top_level.txt,sha256=RFUaR1KG-M6mCYwP6w4ydP5Cgc8yNbP78jxGAvyjMa8,11
|
|
53
|
+
includecpp-4.0.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|