IncludeCPP 3.7.10__py3-none-any.whl → 3.7.11__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 CHANGED
@@ -2,7 +2,7 @@ from .core.cpp_api import CppApi
2
2
  from .core import cssl_bridge as CSSL
3
3
  import warnings
4
4
 
5
- __version__ = "3.7.10"
5
+ __version__ = "3.7.11"
6
6
  __all__ = ["CppApi", "CSSL"]
7
7
 
8
8
  # Module-level cache for C++ modules
Binary file
@@ -2,9 +2,9 @@
2
2
  "name": "cssl",
3
3
  "displayName": "CSSL - CSO Service Script Language",
4
4
  "description": "Professional syntax highlighting, snippets, and language support for CSSL scripts (.cssl, .cssl-pl, .cssl-mod)",
5
- "version": "1.1.0",
5
+ "version": "1.2.0",
6
6
  "publisher": "IncludeCPP",
7
- "icon": "images/cssl-icon.png",
7
+ "icon": "images/cssl.png",
8
8
  "engines": {
9
9
  "vscode": "^1.60.0"
10
10
  },
@@ -25,11 +25,21 @@
25
25
  {
26
26
  "id": "cssl",
27
27
  "aliases": ["CSSL", "cssl", "CSO Service Script"],
28
- "extensions": [".cssl", ".cssl-pl", ".cssl-mod"],
28
+ "extensions": [".cssl", ".cssl-mod"],
29
29
  "configuration": "./language-configuration.json",
30
30
  "icon": {
31
- "light": "./images/cssl-icon.png",
32
- "dark": "./images/cssl-icon.png"
31
+ "light": "./images/cssl.png",
32
+ "dark": "./images/cssl.png"
33
+ }
34
+ },
35
+ {
36
+ "id": "cssl-pl",
37
+ "aliases": ["CSSL Payload", "cssl-pl"],
38
+ "extensions": [".cssl-pl"],
39
+ "configuration": "./language-configuration.json",
40
+ "icon": {
41
+ "light": "./images/cssl_pl.png",
42
+ "dark": "./images/cssl_pl.png"
33
43
  }
34
44
  }
35
45
  ],
@@ -38,12 +48,21 @@
38
48
  "language": "cssl",
39
49
  "scopeName": "source.cssl",
40
50
  "path": "./syntaxes/cssl.tmLanguage.json"
51
+ },
52
+ {
53
+ "language": "cssl-pl",
54
+ "scopeName": "source.cssl",
55
+ "path": "./syntaxes/cssl.tmLanguage.json"
41
56
  }
42
57
  ],
43
58
  "snippets": [
44
59
  {
45
60
  "language": "cssl",
46
61
  "path": "./snippets/cssl.snippets.json"
62
+ },
63
+ {
64
+ "language": "cssl-pl",
65
+ "path": "./snippets/cssl.snippets.json"
47
66
  }
48
67
  ]
49
68
  }
@@ -33,11 +33,13 @@
33
33
  "super-functions": {
34
34
  "patterns": [
35
35
  {
36
- "name": "markup.bold.super.builtin.cssl",
36
+ "comment": "#$run, #$exec, #$printl - yellow/gold color",
37
+ "name": "entity.name.tag.super.cssl",
37
38
  "match": "#\\$(run|exec|printl|init)\\b"
38
39
  },
39
40
  {
40
- "name": "markup.bold.super.call.cssl",
41
+ "comment": "#$anyFunction - yellow/gold color",
42
+ "name": "entity.name.tag.super.cssl",
41
43
  "match": "#\\$[a-zA-Z_][a-zA-Z0-9_]*"
42
44
  }
43
45
  ]
@@ -122,6 +124,9 @@
122
124
  { "include": "#class-member-declaration" },
123
125
  { "include": "#types" },
124
126
  { "include": "#this-access" },
127
+ { "include": "#captured-references" },
128
+ { "include": "#global-references" },
129
+ { "include": "#shared-references" },
125
130
  { "include": "#strings" },
126
131
  { "include": "#numbers" },
127
132
  { "include": "#keywords" },
@@ -267,23 +272,23 @@
267
272
  "injection-operators": {
268
273
  "patterns": [
269
274
  {
270
- "comment": "Infuse operators <<== (REPLACE) - orange/gold color",
271
- "name": "markup.inserted.infuse.cssl",
275
+ "comment": "Infuse operators <<== (REPLACE) - orange color",
276
+ "name": "constant.character.escape.infuse.cssl",
272
277
  "match": "(\\+<<==|<<==|-<<==)"
273
278
  },
274
279
  {
275
- "comment": "Infuse out operators ==>> - orange/gold color",
276
- "name": "markup.inserted.infuse.out.cssl",
280
+ "comment": "Infuse out operators ==>> - orange color",
281
+ "name": "constant.character.escape.infuse.out.cssl",
277
282
  "match": "(==>>\\+|==>>|-==>>)"
278
283
  },
279
284
  {
280
285
  "comment": "Brute injection <== (ADD) - cyan/blue color",
281
- "name": "support.constant.brute.cssl",
286
+ "name": "support.function.brute.cssl",
282
287
  "match": "(\\+<==|<==|-<==)"
283
288
  },
284
289
  {
285
290
  "comment": "Brute injection out ==> - cyan/blue color",
286
- "name": "support.constant.brute.out.cssl",
291
+ "name": "support.function.brute.out.cssl",
287
292
  "match": "(==>\\+|==>|-==>)"
288
293
  },
289
294
  {
@@ -351,32 +356,52 @@
351
356
  "captured-references": {
352
357
  "patterns": [
353
358
  {
354
- "name": "variable.other.captured.cssl",
355
- "match": "%[a-zA-Z_][a-zA-Z0-9_]*"
359
+ "comment": "%identifier - % is light blue, identifier is normal",
360
+ "match": "(%)([a-zA-Z_][a-zA-Z0-9_]*)",
361
+ "captures": {
362
+ "1": { "name": "support.function.captured-prefix.cssl" },
363
+ "2": { "name": "variable.other.captured.cssl" }
364
+ }
356
365
  }
357
366
  ]
358
367
  },
359
368
  "global-references": {
360
369
  "patterns": [
361
370
  {
362
- "name": "variable.other.global.cssl",
363
- "match": "@[a-zA-Z_][a-zA-Z0-9_]*"
371
+ "comment": "@identifier - magenta color for global references",
372
+ "match": "(@)([a-zA-Z_][a-zA-Z0-9_]*)",
373
+ "captures": {
374
+ "1": { "name": "constant.other.symbol.global-prefix.cssl" },
375
+ "2": { "name": "constant.other.symbol.global.cssl" }
376
+ }
364
377
  },
365
378
  {
366
- "name": "variable.other.global-decl.cssl",
367
- "match": "r@[a-zA-Z_][a-zA-Z0-9_]*"
379
+ "comment": "r@identifier - read global reference",
380
+ "match": "(r@)([a-zA-Z_][a-zA-Z0-9_]*)",
381
+ "captures": {
382
+ "1": { "name": "constant.other.symbol.global-prefix.cssl" },
383
+ "2": { "name": "constant.other.symbol.global.cssl" }
384
+ }
368
385
  },
369
386
  {
370
- "name": "variable.other.self-ref.cssl",
371
- "match": "s@[a-zA-Z_][a-zA-Z0-9_]*"
387
+ "comment": "s@identifier - self reference",
388
+ "match": "(s@)([a-zA-Z_][a-zA-Z0-9_]*)",
389
+ "captures": {
390
+ "1": { "name": "constant.other.symbol.global-prefix.cssl" },
391
+ "2": { "name": "constant.other.symbol.global.cssl" }
392
+ }
372
393
  }
373
394
  ]
374
395
  },
375
396
  "shared-references": {
376
397
  "patterns": [
377
398
  {
378
- "name": "variable.other.shared.cssl",
379
- "match": "\\$[a-zA-Z_][a-zA-Z0-9_]*"
399
+ "comment": "$identifier - same color as 'new' keyword",
400
+ "match": "(\\$)([a-zA-Z_][a-zA-Z0-9_]*)",
401
+ "captures": {
402
+ "1": { "name": "keyword.operator.new.shared-prefix.cssl" },
403
+ "2": { "name": "keyword.operator.new.shared.cssl" }
404
+ }
380
405
  }
381
406
  ]
382
407
  },
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: IncludeCPP
3
- Version: 3.7.10
3
+ Version: 3.7.11
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
@@ -1,4 +1,4 @@
1
- includecpp/__init__.py,sha256=6mJkx0L9k3f-G3XtQ3JHRgIk9tApCOWhVlNrBsuYvJs,1673
1
+ includecpp/__init__.py,sha256=Z9BTLyi_CmwjSCKmuWLiSjb37d03xSSSHC459w6eTVg,1673
2
2
  includecpp/__init__.pyi,sha256=c4gZW7_XQXcp6FBcTi5W7zXTmCtbgQhlC4cyeVqtRRM,7253
3
3
  includecpp/__main__.py,sha256=d6QK0PkvUe1ENofpmHRAg3bwNbZr8PiRscfI3-WRfVg,72
4
4
  includecpp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -38,12 +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=MWWIRLUnGvadWzEyfWdykUZHTsrG18sqpn5US5sXqac,1435
41
+ includecpp/vscode/cssl/package.json,sha256=0QVRcUHI8O6trspHc76wKpTzpAEXPDmHhovhnQqDB0U,2097
42
+ includecpp/vscode/cssl/images/cssl.png,sha256=BxAGsnfS0ZzzCvqV6Zb1OAJAZpDUoXlR86MsvUGlSZw,510
43
+ includecpp/vscode/cssl/images/cssl_pl.png,sha256=z4WMk7g6YCTbUUbSFk343BO6yi_OmNEVYkRenWGydwM,799
42
44
  includecpp/vscode/cssl/snippets/cssl.snippets.json,sha256=l4SCEPR3CsPxA8HIVLKYY__I979TfKzYWtH1KYIsboo,33062
43
- includecpp/vscode/cssl/syntaxes/cssl.tmLanguage.json,sha256=WTHh_tpqHssRlhmbxfxSvDsgwvW28cYJ1r45lnOvE7U,19974
44
- includecpp-3.7.10.dist-info/licenses/LICENSE,sha256=fWCsGGsiWZir0UzDd20Hh-3wtRyk1zqUntvtVuAWhvc,1093
45
- includecpp-3.7.10.dist-info/METADATA,sha256=H5v5r6tfBwDm5x2jRmrv7ChaeXigPI7nGc6DL8OZ2F0,32123
46
- includecpp-3.7.10.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
47
- includecpp-3.7.10.dist-info/entry_points.txt,sha256=6A5Mif9gi0139Bf03W5plAb3wnAgbNaEVe1HJoGE-2o,59
48
- includecpp-3.7.10.dist-info/top_level.txt,sha256=RFUaR1KG-M6mCYwP6w4ydP5Cgc8yNbP78jxGAvyjMa8,11
49
- includecpp-3.7.10.dist-info/RECORD,,
45
+ includecpp/vscode/cssl/syntaxes/cssl.tmLanguage.json,sha256=4BCt0fbj5KjaB_enQ6oh7mlmFxDUKcM2Lqc9biNfaq8,21522
46
+ includecpp-3.7.11.dist-info/licenses/LICENSE,sha256=fWCsGGsiWZir0UzDd20Hh-3wtRyk1zqUntvtVuAWhvc,1093
47
+ includecpp-3.7.11.dist-info/METADATA,sha256=UI1MDGD2RdVo5_5efqG1XFvFAMZ6VzLudhSOhUc5x-c,32123
48
+ includecpp-3.7.11.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
49
+ includecpp-3.7.11.dist-info/entry_points.txt,sha256=6A5Mif9gi0139Bf03W5plAb3wnAgbNaEVe1HJoGE-2o,59
50
+ includecpp-3.7.11.dist-info/top_level.txt,sha256=RFUaR1KG-M6mCYwP6w4ydP5Cgc8yNbP78jxGAvyjMa8,11
51
+ includecpp-3.7.11.dist-info/RECORD,,