IncludeCPP 3.7.13__py3-none-any.whl → 3.7.15__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/__init__.pyi +2 -2
- includecpp/core/cssl/__init__.py +1 -1
- includecpp/core/cssl/cssl_builtins.py +3 -3
- includecpp/core/cssl/cssl_builtins.pyi +3218 -393
- includecpp/core/cssl/cssl_parser.py +1 -1
- includecpp/core/cssl/cssl_syntax.py +7 -7
- includecpp/core/cssl/cssl_types.py +1 -1
- includecpp/vscode/cssl/package.json +3 -4
- {includecpp-3.7.13.dist-info → includecpp-3.7.15.dist-info}/METADATA +2 -2
- {includecpp-3.7.13.dist-info → includecpp-3.7.15.dist-info}/RECORD +15 -15
- {includecpp-3.7.13.dist-info → includecpp-3.7.15.dist-info}/WHEEL +0 -0
- {includecpp-3.7.13.dist-info → includecpp-3.7.15.dist-info}/entry_points.txt +0 -0
- {includecpp-3.7.13.dist-info → includecpp-3.7.15.dist-info}/licenses/LICENSE +0 -0
- {includecpp-3.7.13.dist-info → includecpp-3.7.15.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
CSSL Syntax Highlighting
|
|
3
3
|
|
|
4
|
-
Provides syntax highlighting for CSSL
|
|
4
|
+
Provides syntax highlighting for CSSL code.
|
|
5
5
|
Can be used with:
|
|
6
6
|
- PyQt5/6 QSyntaxHighlighter
|
|
7
7
|
- VSCode/TextMate grammar export
|
|
@@ -216,8 +216,8 @@ class CSSLSyntaxRules:
|
|
|
216
216
|
class ColorScheme:
|
|
217
217
|
"""Color scheme for syntax highlighting"""
|
|
218
218
|
|
|
219
|
-
#
|
|
220
|
-
|
|
219
|
+
# CSSL Theme (Orange accent, dark background)
|
|
220
|
+
CSSL_THEME = {
|
|
221
221
|
TokenCategory.KEYWORD: '#508cff', # Blue
|
|
222
222
|
TokenCategory.BUILTIN: '#ff8c00', # Orange
|
|
223
223
|
TokenCategory.OPERATOR: '#c8c8d2', # Light gray
|
|
@@ -261,13 +261,13 @@ def highlight_cssl(source: str, scheme: Dict[TokenCategory, str] = None) -> List
|
|
|
261
261
|
|
|
262
262
|
Args:
|
|
263
263
|
source: CSSL source code
|
|
264
|
-
scheme: Color scheme dict (defaults to
|
|
264
|
+
scheme: Color scheme dict (defaults to CSSL_THEME)
|
|
265
265
|
|
|
266
266
|
Returns:
|
|
267
267
|
List of (start, end, color, category) tuples
|
|
268
268
|
"""
|
|
269
269
|
if scheme is None:
|
|
270
|
-
scheme = ColorScheme.
|
|
270
|
+
scheme = ColorScheme.CSSL_THEME
|
|
271
271
|
|
|
272
272
|
highlights = []
|
|
273
273
|
rules = CSSLSyntaxRules.get_rules()
|
|
@@ -337,7 +337,7 @@ def highlight_cssl_ansi(source: str) -> str:
|
|
|
337
337
|
}
|
|
338
338
|
RESET = '\033[0m'
|
|
339
339
|
|
|
340
|
-
highlights = highlight_cssl(source, ColorScheme.
|
|
340
|
+
highlights = highlight_cssl(source, ColorScheme.CSSL_THEME)
|
|
341
341
|
|
|
342
342
|
# Build highlighted string
|
|
343
343
|
result = []
|
|
@@ -388,7 +388,7 @@ def get_pyqt_highlighter():
|
|
|
388
388
|
|
|
389
389
|
def _setup_rules(self):
|
|
390
390
|
"""Setup highlighting rules"""
|
|
391
|
-
scheme = ColorScheme.
|
|
391
|
+
scheme = ColorScheme.CSSL_THEME
|
|
392
392
|
|
|
393
393
|
for rule in CSSLSyntaxRules.get_rules():
|
|
394
394
|
fmt = QTextCharFormat()
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cssl",
|
|
3
|
-
"displayName": "CSSL
|
|
3
|
+
"displayName": "CSSL Language",
|
|
4
4
|
"description": "Professional syntax highlighting, snippets, and language support for CSSL scripts (.cssl, .cssl-pl, .cssl-mod)",
|
|
5
|
-
"version": "1.2.
|
|
5
|
+
"version": "1.2.3",
|
|
6
6
|
"publisher": "IncludeCPP",
|
|
7
7
|
"icon": "images/cssl.png",
|
|
8
8
|
"engines": {
|
|
@@ -14,7 +14,6 @@
|
|
|
14
14
|
],
|
|
15
15
|
"keywords": [
|
|
16
16
|
"cssl",
|
|
17
|
-
"cso",
|
|
18
17
|
"script",
|
|
19
18
|
"includecpp",
|
|
20
19
|
"c++",
|
|
@@ -24,7 +23,7 @@
|
|
|
24
23
|
"languages": [
|
|
25
24
|
{
|
|
26
25
|
"id": "cssl",
|
|
27
|
-
"aliases": ["CSSL", "cssl"
|
|
26
|
+
"aliases": ["CSSL", "cssl"],
|
|
28
27
|
"extensions": [".cssl"],
|
|
29
28
|
"configuration": "./language-configuration.json",
|
|
30
29
|
"icon": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: IncludeCPP
|
|
3
|
-
Version: 3.7.
|
|
3
|
+
Version: 3.7.15
|
|
4
4
|
Summary: Professional C++ Python bindings with type-generic templates, pystubs and native threading
|
|
5
5
|
Home-page: https://github.com/liliassg/IncludeCPP
|
|
6
6
|
Author: Lilias Hatterscheidt
|
|
@@ -623,7 +623,7 @@ Then check **"Enable Experimental Features"** and save.
|
|
|
623
623
|
|
|
624
624
|
Use at your own discretion. Report issues at: https://github.com/liliassg/IncludeCPP/issues
|
|
625
625
|
|
|
626
|
-
# CSSL -
|
|
626
|
+
# CSSL - C-Style Scripting Language
|
|
627
627
|
|
|
628
628
|
IncludeCPP includes CSSL, a scripting language with advanced data manipulation features.
|
|
629
629
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
includecpp/__init__.py,sha256=
|
|
2
|
-
includecpp/__init__.pyi,sha256=
|
|
1
|
+
includecpp/__init__.py,sha256=7I9GWPnH643fqiEgmBy5_bExUcouYIF0nPqz25Hldyo,1673
|
|
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
|
|
5
5
|
includecpp/cli/__init__.py,sha256=Yda-4a5QJb_tKu35YQNfc5lu-LewTsM5abqNNkzS47M,113
|
|
@@ -20,15 +20,15 @@ includecpp/core/path_discovery.py,sha256=jI0oSq6Hsd4LKXmU4dOiGSrXcEO_KWMXfQ5_ylB
|
|
|
20
20
|
includecpp/core/project_ui.py,sha256=la2EQZKmUkJGuJxnbs09hH1ZhBh9bfndo6okzZsk2dQ,141134
|
|
21
21
|
includecpp/core/settings_ui.py,sha256=B2SlwgdplF2KiBk5UYf2l8Jjifjd0F-FmBP0DPsVCEQ,11798
|
|
22
22
|
includecpp/core/cssl/CSSL_DOCUMENTATION.md,sha256=47sUPO-FMq_8_CrJBZFoFBgSO3gSi5zoB1Xp7oeifho,40773
|
|
23
|
-
includecpp/core/cssl/__init__.py,sha256=
|
|
24
|
-
includecpp/core/cssl/cssl_builtins.py,sha256=
|
|
25
|
-
includecpp/core/cssl/cssl_builtins.pyi,sha256=
|
|
23
|
+
includecpp/core/cssl/__init__.py,sha256=bMG8UO4eMfHEsyqp-wkiMLu-KERNcKUQF_s8yL8PLKU,1810
|
|
24
|
+
includecpp/core/cssl/cssl_builtins.py,sha256=h9cN9GUn5jr8ed_xoXk-sturSSHtvBzffMLBBS3789I,85006
|
|
25
|
+
includecpp/core/cssl/cssl_builtins.pyi,sha256=AJpJKNsRYUCciQ__bCtp5i4NyKDDifiGiCRMAlHp1tk,114254
|
|
26
26
|
includecpp/core/cssl/cssl_events.py,sha256=nupIcXW_Vjdud7zCU6hdwkQRQ0MujlPM7Tk2u7eDAiY,21013
|
|
27
27
|
includecpp/core/cssl/cssl_modules.py,sha256=cUg0-zdymMnWWTsA_BUrW5dx4R04dHpKcUhm-Wfiwwo,103006
|
|
28
|
-
includecpp/core/cssl/cssl_parser.py,sha256=
|
|
28
|
+
includecpp/core/cssl/cssl_parser.py,sha256=t1C0fplyJz_ZqJOlfx5fG2GZZtCMJj4fCIgWzf-1JAY,113147
|
|
29
29
|
includecpp/core/cssl/cssl_runtime.py,sha256=3b14wEWvLpFDVA0r0pyNqy02l7s9FTdXQd61BdpPlZg,131780
|
|
30
|
-
includecpp/core/cssl/cssl_syntax.py,sha256=
|
|
31
|
-
includecpp/core/cssl/cssl_types.py,sha256=
|
|
30
|
+
includecpp/core/cssl/cssl_syntax.py,sha256=bgo3NFehoPTQa5dqwNd_CstkVGVCNYAXbGYUcu5BEN0,16982
|
|
31
|
+
includecpp/core/cssl/cssl_types.py,sha256=dF3oPagZXMsY4tguOrIA_Oei3mVly2MGM889Yb4_ARE,48190
|
|
32
32
|
includecpp/generator/__init__.py,sha256=Rsy41bwimaEloD3gDRR_znPfIJzIsCFuWZgCTJBLJlc,62
|
|
33
33
|
includecpp/generator/parser.cpp,sha256=hbhHdtFH65rzp6prnARN9pNFF_ssr0NseVVcxq0fJh4,76833
|
|
34
34
|
includecpp/generator/parser.h,sha256=EDm0b-pEesIIIQQ2PvH5h2qwlqJU9BH8SiMV7MWbsTo,11073
|
|
@@ -38,14 +38,14 @@ includecpp/templates/cpp.proj.template,sha256=Iy-L8I4Cl3tIgBMx1Qp5h6gURvkqOAqyod
|
|
|
38
38
|
includecpp/vscode/__init__.py,sha256=yLKw-_7MTX1Rx3jLk5JjharJQfFXbwtZVE7YqHpM7yg,39
|
|
39
39
|
includecpp/vscode/cssl/__init__.py,sha256=rQJAx5X05v-mAwqX1Qb-rbZO219iR73MziFNRUCNUIo,31
|
|
40
40
|
includecpp/vscode/cssl/language-configuration.json,sha256=61Q00cKI9may5L8YpxMmvfo6PAc-abdJqApfR85DWuw,904
|
|
41
|
-
includecpp/vscode/cssl/package.json,sha256=
|
|
41
|
+
includecpp/vscode/cssl/package.json,sha256=jMmrDZ2uYSEWBLqTvaYXYlPk91uc3sHEhKZCTHAHFxk,2718
|
|
42
42
|
includecpp/vscode/cssl/images/cssl.png,sha256=BxAGsnfS0ZzzCvqV6Zb1OAJAZpDUoXlR86MsvUGlSZw,510
|
|
43
43
|
includecpp/vscode/cssl/images/cssl_pl.png,sha256=z4WMk7g6YCTbUUbSFk343BO6yi_OmNEVYkRenWGydwM,799
|
|
44
44
|
includecpp/vscode/cssl/snippets/cssl.snippets.json,sha256=l4SCEPR3CsPxA8HIVLKYY__I979TfKzYWtH1KYIsboo,33062
|
|
45
45
|
includecpp/vscode/cssl/syntaxes/cssl.tmLanguage.json,sha256=XKRLBOHlCqDDnGPvmNHDQPsIMR1UD9PBaJIlgZOiPqM,21173
|
|
46
|
-
includecpp-3.7.
|
|
47
|
-
includecpp-3.7.
|
|
48
|
-
includecpp-3.7.
|
|
49
|
-
includecpp-3.7.
|
|
50
|
-
includecpp-3.7.
|
|
51
|
-
includecpp-3.7.
|
|
46
|
+
includecpp-3.7.15.dist-info/licenses/LICENSE,sha256=fWCsGGsiWZir0UzDd20Hh-3wtRyk1zqUntvtVuAWhvc,1093
|
|
47
|
+
includecpp-3.7.15.dist-info/METADATA,sha256=vj7HSGJ_GwS07enOPua6Zk-0WQ_15WdpC83jBP8ZOQw,32122
|
|
48
|
+
includecpp-3.7.15.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
49
|
+
includecpp-3.7.15.dist-info/entry_points.txt,sha256=6A5Mif9gi0139Bf03W5plAb3wnAgbNaEVe1HJoGE-2o,59
|
|
50
|
+
includecpp-3.7.15.dist-info/top_level.txt,sha256=RFUaR1KG-M6mCYwP6w4ydP5Cgc8yNbP78jxGAvyjMa8,11
|
|
51
|
+
includecpp-3.7.15.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|