IncludeCPP 3.7.11__py3-none-any.whl → 3.7.12__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.11"
5
+ __version__ = "3.7.12"
6
6
  __all__ = ["CppApi", "CSSL"]
7
7
 
8
8
  # Module-level cache for C++ modules
@@ -2,7 +2,7 @@
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.2.0",
5
+ "version": "1.2.1",
6
6
  "publisher": "IncludeCPP",
7
7
  "icon": "images/cssl.png",
8
8
  "engines": {
@@ -25,13 +25,23 @@
25
25
  {
26
26
  "id": "cssl",
27
27
  "aliases": ["CSSL", "cssl", "CSO Service Script"],
28
- "extensions": [".cssl", ".cssl-mod"],
28
+ "extensions": [".cssl"],
29
29
  "configuration": "./language-configuration.json",
30
30
  "icon": {
31
31
  "light": "./images/cssl.png",
32
32
  "dark": "./images/cssl.png"
33
33
  }
34
34
  },
35
+ {
36
+ "id": "cssl-mod",
37
+ "aliases": ["CSSL Module", "cssl-mod"],
38
+ "extensions": [".cssl-mod"],
39
+ "configuration": "./language-configuration.json",
40
+ "icon": {
41
+ "light": "./images/cssl_pl.png",
42
+ "dark": "./images/cssl_pl.png"
43
+ }
44
+ },
35
45
  {
36
46
  "id": "cssl-pl",
37
47
  "aliases": ["CSSL Payload", "cssl-pl"],
@@ -49,6 +59,11 @@
49
59
  "scopeName": "source.cssl",
50
60
  "path": "./syntaxes/cssl.tmLanguage.json"
51
61
  },
62
+ {
63
+ "language": "cssl-mod",
64
+ "scopeName": "source.cssl",
65
+ "path": "./syntaxes/cssl.tmLanguage.json"
66
+ },
52
67
  {
53
68
  "language": "cssl-pl",
54
69
  "scopeName": "source.cssl",
@@ -60,6 +75,10 @@
60
75
  "language": "cssl",
61
76
  "path": "./snippets/cssl.snippets.json"
62
77
  },
78
+ {
79
+ "language": "cssl-mod",
80
+ "path": "./snippets/cssl.snippets.json"
81
+ },
63
82
  {
64
83
  "language": "cssl-pl",
65
84
  "path": "./snippets/cssl.snippets.json"
@@ -27,7 +27,8 @@
27
27
  { "include": "#function-calls" },
28
28
  { "include": "#builtins" },
29
29
  { "include": "#operators" },
30
- { "include": "#constants" }
30
+ { "include": "#constants" },
31
+ { "include": "#variables" }
31
32
  ],
32
33
  "repository": {
33
34
  "super-functions": {
@@ -356,11 +357,11 @@
356
357
  "captured-references": {
357
358
  "patterns": [
358
359
  {
359
- "comment": "%identifier - % is light blue, identifier is normal",
360
+ "comment": "%identifier - % is light blue, identifier is light pink like vars",
360
361
  "match": "(%)([a-zA-Z_][a-zA-Z0-9_]*)",
361
362
  "captures": {
362
- "1": { "name": "support.function.captured-prefix.cssl" },
363
- "2": { "name": "variable.other.captured.cssl" }
363
+ "1": { "name": "support.function.prefix.cssl" },
364
+ "2": { "name": "variable.parameter.cssl" }
364
365
  }
365
366
  }
366
367
  ]
@@ -368,40 +369,37 @@
368
369
  "global-references": {
369
370
  "patterns": [
370
371
  {
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
- }
372
+ "comment": "@identifier - magenta color (full)",
373
+ "name": "constant.other.symbol.cssl",
374
+ "match": "@[a-zA-Z_][a-zA-Z0-9_]*"
377
375
  },
378
376
  {
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
- }
377
+ "comment": "r@identifier - magenta color",
378
+ "name": "constant.other.symbol.cssl",
379
+ "match": "r@[a-zA-Z_][a-zA-Z0-9_]*"
385
380
  },
386
381
  {
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
- }
382
+ "comment": "s@identifier - magenta color",
383
+ "name": "constant.other.symbol.cssl",
384
+ "match": "s@[a-zA-Z_][a-zA-Z0-9_]*"
393
385
  }
394
386
  ]
395
387
  },
396
388
  "shared-references": {
397
389
  "patterns": [
398
390
  {
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
- }
391
+ "comment": "$identifier - same color as 'new' keyword (full)",
392
+ "name": "keyword.operator.new.cssl",
393
+ "match": "\\$[a-zA-Z_][a-zA-Z0-9_]*"
394
+ }
395
+ ]
396
+ },
397
+ "variables": {
398
+ "patterns": [
399
+ {
400
+ "comment": "Regular variables - light pink",
401
+ "name": "variable.parameter.cssl",
402
+ "match": "\\b[a-z_][a-zA-Z0-9_]*\\b"
405
403
  }
406
404
  ]
407
405
  },
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: IncludeCPP
3
- Version: 3.7.11
3
+ Version: 3.7.12
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=Z9BTLyi_CmwjSCKmuWLiSjb37d03xSSSHC459w6eTVg,1673
1
+ includecpp/__init__.py,sha256=puODPe0RHBw2fzg5zoUyhDXQ6VQSPAX2wLwMLMPezuQ,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,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=0QVRcUHI8O6trspHc76wKpTzpAEXPDmHhovhnQqDB0U,2097
41
+ includecpp/vscode/cssl/package.json,sha256=sCQvYbwebpKAfKDLQCj67mewdiDqhNCJHx9kyOzKhM8,2777
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
- 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,,
45
+ includecpp/vscode/cssl/syntaxes/cssl.tmLanguage.json,sha256=v_VIVAMxrGRulXC9bi0NC0DWEWj-b9jynFYWJutpUeU,21168
46
+ includecpp-3.7.12.dist-info/licenses/LICENSE,sha256=fWCsGGsiWZir0UzDd20Hh-3wtRyk1zqUntvtVuAWhvc,1093
47
+ includecpp-3.7.12.dist-info/METADATA,sha256=8-C64qItZFO0CpbmTL-utH0Hb2cSxUcN-yTO8gquuYk,32123
48
+ includecpp-3.7.12.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
49
+ includecpp-3.7.12.dist-info/entry_points.txt,sha256=6A5Mif9gi0139Bf03W5plAb3wnAgbNaEVe1HJoGE-2o,59
50
+ includecpp-3.7.12.dist-info/top_level.txt,sha256=RFUaR1KG-M6mCYwP6w4ydP5Cgc8yNbP78jxGAvyjMa8,11
51
+ includecpp-3.7.12.dist-info/RECORD,,