IncludeCPP 4.6.0__py3-none-any.whl → 4.9.3__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.
Files changed (35) hide show
  1. includecpp/CHANGELOG.md +241 -0
  2. includecpp/__init__.py +89 -3
  3. includecpp/__init__.pyi +2 -1
  4. includecpp/cli/commands.py +1747 -266
  5. includecpp/cli/config_parser.py +1 -1
  6. includecpp/core/build_manager.py +64 -13
  7. includecpp/core/cpp_api_extensions.pyi +43 -270
  8. includecpp/core/cssl/CSSL_DOCUMENTATION.md +1799 -1445
  9. includecpp/core/cssl/cpp/build/api.pyd +0 -0
  10. includecpp/core/cssl/cpp/build/api.pyi +274 -0
  11. includecpp/core/cssl/cpp/build/cssl_core.pyi +0 -99
  12. includecpp/core/cssl/cpp/cssl_core.cp +2 -23
  13. includecpp/core/cssl/cssl_builtins.py +2116 -171
  14. includecpp/core/cssl/cssl_builtins.pyi +1324 -104
  15. includecpp/core/cssl/cssl_compiler.py +4 -1
  16. includecpp/core/cssl/cssl_modules.py +605 -6
  17. includecpp/core/cssl/cssl_optimizer.py +12 -1
  18. includecpp/core/cssl/cssl_parser.py +1048 -52
  19. includecpp/core/cssl/cssl_runtime.py +2041 -131
  20. includecpp/core/cssl/cssl_syntax.py +405 -277
  21. includecpp/core/cssl/cssl_types.py +5891 -1655
  22. includecpp/core/cssl_bridge.py +427 -4
  23. includecpp/core/error_catalog.py +54 -10
  24. includecpp/core/homeserver.py +1037 -0
  25. includecpp/generator/parser.cpp +203 -39
  26. includecpp/generator/parser.h +15 -1
  27. includecpp/templates/cpp.proj.template +1 -1
  28. includecpp/vscode/cssl/snippets/cssl.snippets.json +163 -0
  29. includecpp/vscode/cssl/syntaxes/cssl.tmLanguage.json +87 -12
  30. {includecpp-4.6.0.dist-info → includecpp-4.9.3.dist-info}/METADATA +81 -10
  31. {includecpp-4.6.0.dist-info → includecpp-4.9.3.dist-info}/RECORD +35 -33
  32. {includecpp-4.6.0.dist-info → includecpp-4.9.3.dist-info}/WHEEL +1 -1
  33. {includecpp-4.6.0.dist-info → includecpp-4.9.3.dist-info}/entry_points.txt +0 -0
  34. {includecpp-4.6.0.dist-info → includecpp-4.9.3.dist-info}/licenses/LICENSE +0 -0
  35. {includecpp-4.6.0.dist-info → includecpp-4.9.3.dist-info}/top_level.txt +0 -0
@@ -30,9 +30,10 @@
30
30
  { "include": "#instance-references" },
31
31
  { "include": "#module-references" },
32
32
  { "include": "#reference-operator" },
33
+ { "include": "#pointer-references" },
33
34
  { "include": "#method-calls" },
34
- { "include": "#function-calls" },
35
35
  { "include": "#builtins" },
36
+ { "include": "#function-calls" },
36
37
  { "include": "#operators" },
37
38
  { "include": "#constants" },
38
39
  { "include": "#non-null-declarations" },
@@ -516,7 +517,37 @@
516
517
  },
517
518
  {
518
519
  "name": "storage.type.class.cssl",
519
- "match": "\\b(class|struct|structure|enum|interface|bytearrayed)\\b"
520
+ "match": "\\b(class|struct|structure|enum|interface|bytearrayed|namespace)\\b"
521
+ },
522
+ {
523
+ "comment": "Class definition with parameters: class ClassName(type param, ...)",
524
+ "name": "meta.class.definition.cssl",
525
+ "begin": "\\b(class|struct)\\s+([A-Z][A-Za-z0-9_]*)\\s*\\(",
526
+ "beginCaptures": {
527
+ "1": { "name": "storage.type.class.cssl" },
528
+ "2": { "name": "entity.name.type.class.cssl" }
529
+ },
530
+ "end": "\\)",
531
+ "patterns": [
532
+ { "include": "#function-parameters" }
533
+ ]
534
+ },
535
+ {
536
+ "comment": "namespace definition: namespace mylib { }",
537
+ "name": "meta.namespace.cssl",
538
+ "begin": "\\b(namespace)\\s+([A-Za-z_][A-Za-z0-9_]*)\\s*(\\{)",
539
+ "beginCaptures": {
540
+ "1": { "name": "storage.type.namespace.cssl" },
541
+ "2": { "name": "entity.name.namespace.cssl" },
542
+ "3": { "name": "punctuation.definition.block.cssl" }
543
+ },
544
+ "end": "(\\})",
545
+ "endCaptures": {
546
+ "1": { "name": "punctuation.definition.block.cssl" }
547
+ },
548
+ "patterns": [
549
+ { "include": "$self" }
550
+ ]
520
551
  },
521
552
  {
522
553
  "name": "storage.modifier.extends.cssl",
@@ -627,7 +658,7 @@
627
658
  {
628
659
  "comment": "Primitive type in function parameter: func(string name)",
629
660
  "name": "meta.parameter.typed.primitive.cssl",
630
- "match": "\\b(int|string|float|bool|void|json|dynamic|auto|long|double)\\s+([a-zA-Z_][a-zA-Z0-9_]*)\\s*(?=[,)])",
661
+ "match": "\\b(int|string|float|bool|void|json|dynamic|auto|long|double|bit|byte|address|ptr|pointer|datastruct|dataspace|instance)\\s+([a-zA-Z_][a-zA-Z0-9_]*)\\s*(?=[,)])",
631
662
  "captures": {
632
663
  "1": { "name": "support.type.cssl" },
633
664
  "2": { "name": "variable.parameter.cssl" }
@@ -639,7 +670,7 @@
639
670
  "patterns": [
640
671
  {
641
672
  "name": "support.type.cssl",
642
- "match": "\\b(int|string|float|bool|void|json|dynamic|auto|long|double)\\b"
673
+ "match": "\\b(int|string|float|bool|void|json|dynamic|auto|long|double|bit|byte|address|ptr|pointer)\\b"
643
674
  },
644
675
  {
645
676
  "comment": "Generic containers with type parameter: vector<int>, map<string, int>",
@@ -703,6 +734,16 @@
703
734
  {
704
735
  "name": "storage.modifier.cssl",
705
736
  "match": "\\b(undefined|open|closed|private|virtual|meta|super|sqlbased|protected|limited|const|static|final|abstract|readonly)\\b"
737
+ },
738
+ {
739
+ "comment": "native keyword - forces C++ execution (green)",
740
+ "name": "keyword.native.execution.cssl",
741
+ "match": "\\bnative\\b"
742
+ },
743
+ {
744
+ "comment": "unative keyword - forces Python execution (orange)",
745
+ "name": "keyword.unative.execution.cssl",
746
+ "match": "\\bunative\\b"
706
747
  }
707
748
  ]
708
749
  },
@@ -801,12 +842,18 @@
801
842
  "captured-references": {
802
843
  "patterns": [
803
844
  {
804
- "comment": "%identifier - % is light blue/cyan, identifier is pink",
805
- "match": "(%)([a-zA-Z_][a-zA-Z0-9_]*)",
806
- "captures": {
807
- "1": { "name": "support.type.cssl" },
808
- "2": { "name": "entity.other.inherited-class.cssl" }
809
- }
845
+ "comment": "%identifier (snapshot) - cyan/teal color like @ globals",
846
+ "name": "constant.other.symbol.snapshot.cssl",
847
+ "match": "%[a-zA-Z_][a-zA-Z0-9_]*"
848
+ }
849
+ ]
850
+ },
851
+ "pointer-references": {
852
+ "patterns": [
853
+ {
854
+ "comment": "?identifier (pointer) - purple/violet color",
855
+ "name": "variable.other.pointer.cssl",
856
+ "match": "\\?[a-zA-Z_][a-zA-Z0-9_]*"
810
857
  }
811
858
  ]
812
859
  },
@@ -979,7 +1026,7 @@
979
1026
  },
980
1027
  {
981
1028
  "name": "support.function.builtin.type.cssl",
982
- "match": "\\b(len|type|toInt|toFloat|toString|toBool|typeof)\\b"
1029
+ "match": "\\b(len|type|toInt|toFloat|toString|toBool|typeof|memory|address|reflect|destroy)\\b"
983
1030
  },
984
1031
  {
985
1032
  "name": "support.function.builtin.control.cssl",
@@ -987,7 +1034,15 @@
987
1034
  },
988
1035
  {
989
1036
  "name": "support.function.builtin.special.cssl",
990
- "match": "\\b(OpenFind|share|shared|include)\\b"
1037
+ "match": "\\b(OpenFind|cast|share|shared|include|includecpp)\\b"
1038
+ },
1039
+ {
1040
+ "name": "support.function.builtin.snapshot.cssl",
1041
+ "match": "\\b(snapshot|get_snapshot|has_snapshot|clear_snapshot|clear_snapshots|list_snapshots|restore_snapshot)\\b"
1042
+ },
1043
+ {
1044
+ "name": "support.function.builtin.math.cssl",
1045
+ "match": "\\b(random|randint|round|abs|ceil|floor|sqrt|pow|min|max|sum)\\b"
991
1046
  },
992
1047
  {
993
1048
  "name": "support.variable.builtin.parameter.cssl",
@@ -1030,6 +1085,26 @@
1030
1085
  "match": "\\b(null|None)\\b"
1031
1086
  }
1032
1087
  ]
1088
+ },
1089
+ "function-parameters": {
1090
+ "patterns": [
1091
+ {
1092
+ "comment": "Typed parameter: type paramName",
1093
+ "match": "\\b(int|string|float|bool|void|json|dynamic|list|dict|map|queue|instance|datastruct|dataspace|shuffled|vector|stack|array|bit|byte|address|ptr|pointer|[A-Z][A-Za-z0-9_]*)\\s+(&)?([a-z_][A-Za-z0-9_]*)",
1094
+ "captures": {
1095
+ "1": { "name": "support.type.cssl" },
1096
+ "2": { "name": "keyword.operator.reference.cssl" },
1097
+ "3": { "name": "variable.parameter.cssl" }
1098
+ }
1099
+ },
1100
+ {
1101
+ "comment": "Untyped parameter",
1102
+ "match": "\\b([a-z_][A-Za-z0-9_]*)\\b(?!\\s*[({=])",
1103
+ "captures": {
1104
+ "1": { "name": "variable.parameter.cssl" }
1105
+ }
1106
+ }
1107
+ ]
1033
1108
  }
1034
1109
  }
1035
1110
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: IncludeCPP
3
- Version: 4.6.0
3
+ Version: 4.9.3
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
@@ -179,6 +179,11 @@ includecpp rebuild --clean
179
179
  | `rebuild --fast` | Fast incremental build |
180
180
  | `rebuild --clean` | Full clean rebuild |
181
181
  | `get <name>` | Show module's API |
182
+ | `server start` | Start HomeServer |
183
+ | `server stop` | Stop HomeServer |
184
+ | `server upload` | Upload file/project |
185
+ | `server download` | Download file/project |
186
+ | `server list` | List stored items |
182
187
 
183
188
  ---
184
189
 
@@ -247,23 +252,89 @@ includecpp <command> --help
247
252
 
248
253
  ---
249
254
 
250
- ## Experimental Features
255
+ ## HomeServer
251
256
 
252
- IncludeCPP also includes experimental features that are still in development:
257
+ Store and manage your modules, projects and files locally with the HomeServer:
253
258
 
254
- - **CSSL** - A scripting language for runtime code manipulation
255
- - **AI Commands** - OpenAI-powered code analysis (`includecpp ai`)
256
- - **CPPY** - Python to C++ conversion (`includecpp cppy`)
259
+ ```bash
260
+ # Install and start the server (one-time setup)
261
+ includecpp server install
262
+
263
+ # Manual start/stop
264
+ includecpp server start
265
+ includecpp server stop
266
+ includecpp server status
267
+
268
+ # Upload files or projects
269
+ includecpp server upload mymodule ./include/mymodule.cpp
270
+ includecpp server upload myproject ./myproject --project
271
+
272
+ # List, download, delete
273
+ includecpp server list
274
+ includecpp server download mymodule ./backup/
275
+ includecpp server delete mymodule
276
+
277
+ # Change port (default: 2007)
278
+ includecpp server port 3000
257
279
 
258
- These are hidden by default. To enable them:
280
+ # Remove HomeServer completely
281
+ includecpp server deinstall
282
+ ```
283
+
284
+ The server runs silently in the background and can auto-start with Windows.
285
+
286
+ ---
287
+
288
+ ## CSSL Scripting Language
289
+
290
+ CSSL is IncludeCPP's built-in scripting language with 330+ builtin functions, C++-style syntax, and advanced features like CodeInfusion and BruteInjection.
291
+
292
+ ### Quick Example
259
293
 
260
294
  ```bash
261
- includecpp settings
295
+ # Run CSSL code
296
+ includecpp cssl run "printl('Hello from CSSL!');"
297
+
298
+ # Run a .cssl file
299
+ includecpp cssl file script.cssl
300
+
301
+ # Interactive REPL
302
+ includecpp cssl repl
303
+ ```
304
+
305
+ ### Features
306
+
307
+ - **C++ Containers**: `vector<T>`, `stack<T>`, `map<K,V>`, `queue<T>`, `datastruct<T>`
308
+ - **Classes & Inheritance**: `class Child : extends Parent { }`
309
+ - **Namespaces & Enums**: Organize code with `namespace mylib { }`
310
+ - **CodeInfusion**: Inject code into functions at runtime with `<<==`
311
+ - **BruteInjection**: Data manipulation with `<==` and filters
312
+ - **Snapshots**: Capture and restore variable states with `%variable`
313
+ - **C++ I/O Streams**: `cout << "Hello" << endl;`
314
+ - **Native/Unative**: Control C++/Python execution with keywords
315
+
316
+ ### CSSL CLI
317
+
318
+ ```bash
319
+ includecpp cssl run "code" # Execute code string
320
+ includecpp cssl file script.cssl # Run .cssl file
321
+ includecpp cssl repl # Interactive mode
322
+ includecpp cssl convert file.cssl # Convert to Python
323
+ includecpp cssl docs # Full documentation
262
324
  ```
263
325
 
264
- Check "Enable Experimental Features" and save.
326
+ Full documentation: `includecpp cssl docs` or see [CSSL_DOCUMENTATION.md](includecpp/core/cssl/CSSL_DOCUMENTATION.md)
327
+
328
+ ---
329
+
330
+ ## Experimental Features
331
+
332
+ IncludeCPP also includes experimental features:
333
+
334
+ - **AI Commands** - OpenAI-powered code analysis (`includecpp ai`)
335
+ - **CPPY** - Python to C++ conversion (`includecpp cppy`)
265
336
 
266
- Warning: Experimental features may have bugs or breaking changes between versions.
337
+ Enable with: `includecpp settings` "Enable Experimental Features"
267
338
 
268
339
  ---
269
340
 
@@ -1,54 +1,56 @@
1
- includecpp/CHANGELOG.md,sha256=zgkItpsqSDaa9oAaax88xgUHoU60ASDQuXFbKUeimi4,4909
1
+ includecpp/CHANGELOG.md,sha256=oGGA-zrQThdC247nraRsShpygo7xEbl30Gt8BNJ05M8,12728
2
2
  includecpp/DOCUMENTATION.md,sha256=MgCUZtslObxTqTLnxjME34NcGo4Z1h_C3n6gcDs82r0,7961
3
- includecpp/__init__.py,sha256=u__pqAfPtmUYuodOLlSWMtIHS5t6caaIChpY194dsAc,1672
4
- includecpp/__init__.pyi,sha256=Gk5f1DegO1YpKgBQ_liPWjNzJQJ0n_20pGCJ2hMnHx8,7156
3
+ includecpp/__init__.py,sha256=JFKmTr7H0YzNi3KBnyRAUTNbc6Q2vDotOE3XAXzq7_0,5319
4
+ includecpp/__init__.pyi,sha256=V90qnjIq7Es04HXBuRjDVhSq0nd2HT-I9otBVAqgWao,7187
5
5
  includecpp/__main__.py,sha256=d6QK0PkvUe1ENofpmHRAg3bwNbZr8PiRscfI3-WRfVg,72
6
6
  includecpp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
7
  includecpp/cli/__init__.py,sha256=Yda-4a5QJb_tKu35YQNfc5lu-LewTsM5abqNNkzS47M,113
8
- includecpp/cli/commands.py,sha256=Rf-ISWe0nIpV-C1VdnwNvKV0thGwePdIpTUz19zAIfs,418783
9
- includecpp/cli/config_parser.py,sha256=KveeYUg2TA9sC5hKVzYYfgdNm2WfLG5y7_yxgBWn9yM,4886
8
+ includecpp/cli/commands.py,sha256=gzzlxQnk0BiQEzHTV0spUGNaQU0E4guCZWNOYu9Bbbo,483284
9
+ includecpp/cli/config_parser.py,sha256=5xJvNcsDJEg_x6HI9b8EDD3Pv64UjCGoAXPRMrLgsCg,4919
10
10
  includecpp/core/__init__.py,sha256=L1bT6oikTjdto-6Px7DpjePtM07ymo3Bnov1saZzsGg,390
11
11
  includecpp/core/ai_integration.py,sha256=Q44Y1SD_4yXETO4AwtoR51QnX0T4Tc14_Ux9VozQJhQ,89146
12
- includecpp/core/build_manager.py,sha256=uLuYsuiC6OsOGaU5wAJfl4M3IbdnIDgogfMd8VsVpq8,102866
12
+ includecpp/core/build_manager.py,sha256=D1s7APIDNOHMAP5WiS3PwIC7d6IlkMPZFeo39ogQDvA,105653
13
13
  includecpp/core/cpp_api.py,sha256=8y_B1L18rhSBZln654xPPzqO2PdvAlLpJrfEjzl7Wnc,14039
14
14
  includecpp/core/cpp_api.pyi,sha256=IEiaKqaPItnn6rjL7aK32D3o9FYmRYCgCZbqiQNUwdc,3496
15
- includecpp/core/cpp_api_extensions.pyi,sha256=eqqi7A1pUGg9GTDpWLWViNFNdQZ0AG8rV0oSysynJvs,10432
15
+ includecpp/core/cpp_api_extensions.pyi,sha256=3YE_uo-k7ITkQmA6M0VKzT_iu7DmtZ_tWJoRydzr4H0,3869
16
16
  includecpp/core/cppy_converter.py,sha256=b7yqu-aoa0wShNY0GvQT67TnNhYya4GyYmG7oDdqDV4,156686
17
- includecpp/core/cssl_bridge.py,sha256=-FsC_TppbNlSzc-lmmV4bpya1vdofprGy_KqGOY6S5c,51995
17
+ includecpp/core/cssl_bridge.py,sha256=ofYce2K07BtM9zoCje83yxETJYk0vB-0hirU_FQb1UU,67257
18
18
  includecpp/core/cssl_bridge.pyi,sha256=nreh2gtK94I6VFrzTWcYVUHN97wcYQF0dY_-HySi7yQ,28787
19
- includecpp/core/error_catalog.py,sha256=VS3N-P0yEbiHimsDPtcaYfrUb7mXQ-7pqw18PtSngaU,33869
19
+ includecpp/core/error_catalog.py,sha256=GXY5qXNkyXBzVRJTSDbn5N0_46sDPKBOIbmaOpZC4kc,38507
20
20
  includecpp/core/error_formatter.py,sha256=7-MzRIT8cM4uODxy0IZ9pu7pqR4Pq2I8Si0QQZHjmVc,39239
21
21
  includecpp/core/exceptions.py,sha256=szeF4qdzi_q8hBBZi7mJxkliyQ0crplkLYe0ymlBGtk,2459
22
+ includecpp/core/homeserver.py,sha256=K4iLFw3waa9pcYaZF057VlYN3G_pAYMlufgdux52kog,39248
22
23
  includecpp/core/path_discovery.py,sha256=jI0oSq6Hsd4LKXmU4dOiGSrXcEO_KWMXfQ5_ylBmXvU,2561
23
24
  includecpp/core/project_ui.py,sha256=la2EQZKmUkJGuJxnbs09hH1ZhBh9bfndo6okzZsk2dQ,141134
24
25
  includecpp/core/settings_ui.py,sha256=B2SlwgdplF2KiBk5UYf2l8Jjifjd0F-FmBP0DPsVCEQ,11798
25
- includecpp/core/cssl/CSSL_DOCUMENTATION.md,sha256=Ax7x6h_ZFg4rhghtSNG9dahySh-bJc2upEqP4E-mfck,43486
26
+ includecpp/core/cssl/CSSL_DOCUMENTATION.md,sha256=73Twl7CPpd-h02GpnvUcqNrQxc08jFg9P_eqRkmLeIw,44946
26
27
  includecpp/core/cssl/CSSL_DOCUMENTATION_NEW.md,sha256=I_bVeKWlbcgHYkl2o9L2vk3r5sDvG44bGh__RJIYduw,28222
27
28
  includecpp/core/cssl/__init__.py,sha256=46EcmJKxziXupgqhqBRnMl5QlvUP6KA8x6JGlls_JyY,11993
28
- includecpp/core/cssl/cssl_builtins.py,sha256=pAm0lHzdI3DraNVGrVlZM-RfJF76rDsmKCUS1iMk7IE,118787
29
- includecpp/core/cssl/cssl_builtins.pyi,sha256=-yr9JbxHKFv9Vc1iufChcqCQvNQLL3-Ow_Hgg0YwQnc,135180
30
- includecpp/core/cssl/cssl_compiler.py,sha256=0yv8qbCm7ikC5pZXhYvAiNM5oBZmiNgVyyjrCtyjieg,14409
29
+ includecpp/core/cssl/cssl_builtins.py,sha256=QzGGbshBT8f55seHRJ8n4uCnORERl5nW300zppdq2Bg,196333
30
+ includecpp/core/cssl/cssl_builtins.pyi,sha256=850mWed8cAOthIuw0vn-_pJZkmlnvNsijTl8rScNCVA,166496
31
+ includecpp/core/cssl/cssl_compiler.py,sha256=ii_1QE16e6hw6OLpVvwS80xN6AVBPoYstvu060dCKnU,14566
31
32
  includecpp/core/cssl/cssl_events.py,sha256=nupIcXW_Vjdud7zCU6hdwkQRQ0MujlPM7Tk2u7eDAiY,21013
32
33
  includecpp/core/cssl/cssl_languages.py,sha256=qftMcBiNT1pbIn5OniTZDx8rFtGYU4yx4Iw1QYKAC1U,62342
33
- includecpp/core/cssl/cssl_modules.py,sha256=cUg0-zdymMnWWTsA_BUrW5dx4R04dHpKcUhm-Wfiwwo,103006
34
- includecpp/core/cssl/cssl_optimizer.py,sha256=EUWGkd-N4KeI98ENXOkIGQVmz68VE2AGOG_7cYHMsh4,28322
35
- includecpp/core/cssl/cssl_parser.py,sha256=hXn693e4uucYUkcPFfvSIgtz-OJL5YCxm6idJmqHTBY,212208
36
- includecpp/core/cssl/cssl_runtime.py,sha256=m1LdghxYhw6oolkEgvDcgHLgqH1xoDhDNcRI8cJynEo,271043
37
- includecpp/core/cssl/cssl_syntax.py,sha256=RLvpDymbe66eubD51dcICtDcKyJQ2qQ5IxPNp9SlhW4,21730
38
- includecpp/core/cssl/cssl_types.py,sha256=ZqUfDRNH1V_c0qsDbfAXz8nfkTSZ9DIlr5VTGd-udak,73090
39
- includecpp/core/cssl/cpp/cssl_core.cp,sha256=0ycXtd7IEIPCq11-uS-WZpD-6ShVgIqD_tMGBVnaut8,2944
34
+ includecpp/core/cssl/cssl_modules.py,sha256=9mGpMsEX4Elv7HK5Me2q4TyOv0rLMuY0j4t3VpLSiaY,125260
35
+ includecpp/core/cssl/cssl_optimizer.py,sha256=n5sOVFrP90ye1M1XoyVyJ9u8ueOKLQTzvIoI6dsZp1g,29008
36
+ includecpp/core/cssl/cssl_parser.py,sha256=kGBfWcA8Mnf4SokWhmWn4NVrC87z05xRDInZn4iptms,263919
37
+ includecpp/core/cssl/cssl_runtime.py,sha256=3GiNq8lOQlhc6WNo2tS2epKZUvsmXpaT3VcZlAmkYjo,363348
38
+ includecpp/core/cssl/cssl_syntax.py,sha256=VkBDUnXgtqjVf2rfWD3PvvIZjwG_QsVIRkmWUQMb8H0,34631
39
+ includecpp/core/cssl/cssl_types.py,sha256=xLD56iF_NaG5BTn0TYF55ErEgvpjtI8nfaym0ApnsmI,211037
40
+ includecpp/core/cssl/cpp/cssl_core.cp,sha256=JK1AEQ32bX-jX3dFw4OUiWBloWCYqwb1fR9_YgF5QCs,2422
40
41
  includecpp/core/cssl/cpp/cssl_lexer.hpp,sha256=ItpblJWnu2BnaAUNsmGwJEjOJPjzTCJlygvpel9MI3g,7563
41
- includecpp/core/cssl/cpp/build/api.pyd,sha256=nK1D9KSycWATC3jPDqwgydwF_mqRWQ63cnlpn1_x4j8,4315940
42
- includecpp/core/cssl/cpp/build/cssl_core.pyi,sha256=pAxrzrkH9r81mbhdIx9HoEq1vbgs2B69ADuocTM303M,7228
42
+ includecpp/core/cssl/cpp/build/api.pyd,sha256=0-tRGdLWH536BVop_ekXA6HiaPbrzsQzFLbi9yzP-7s,4324911
43
+ includecpp/core/cssl/cpp/build/api.pyi,sha256=jARv4Qx0PM85kGhdlOifisLMu6Z3UxxJCc1oAIl1RvE,6761
44
+ includecpp/core/cssl/cpp/build/cssl_core.pyi,sha256=iILkXgKbD1CEenPKPjxxgpKmpyRcIV7ybimFyeXJdbM,5112
43
45
  includecpp/core/cssl/cpp/build/libgcc_s_seh-1.dll,sha256=LeQ1VkhEHbAjCpq6GhSfyCmwlPg8FMN-o_d1NW0z2LE,150196
44
46
  includecpp/core/cssl/cpp/build/libstdc++-6.dll,sha256=Qo0iqKTSXjntrTaFESJwGzRgwrz2KIhM3SZkUw0t1jQ,2461848
45
47
  includecpp/core/cssl/cpp/build/libwinpthread-1.dll,sha256=8MSLzx8fCmW0-ZQG9W23NJ3tiGbNhlSGh6tqmOhZrzU,64403
46
48
  includecpp/generator/__init__.py,sha256=Rsy41bwimaEloD3gDRR_znPfIJzIsCFuWZgCTJBLJlc,62
47
- includecpp/generator/parser.cpp,sha256=4zOlMe0VmMqlDAHhm92Ug0rx4C7WbmCkKuHPluqfIX8,84285
48
- includecpp/generator/parser.h,sha256=z8qHnsiY8cXAwq5JW9O-V-hCSjDQacYLgi91ViqzHSw,11405
49
+ includecpp/generator/parser.cpp,sha256=IOL_n1mQAmnshxW3QbxFrx1fJ48fLbLfznOr2M6iEP8,92306
50
+ includecpp/generator/parser.h,sha256=Kqa-FNk8G-UnAJu6RrFImJfu2v-7MKS8Y5xOB_wlUhA,12050
49
51
  includecpp/generator/type_resolver.cpp,sha256=MmFK_4HXd1wqxALDiDyXVuU397SXoQL_o5zb_8N8Hzs,12346
50
52
  includecpp/generator/type_resolver.h,sha256=ZsaxQqcCcKJJApYn7KOp2dLlQ1VFVG_oZDjaK5LhBSg,2590
51
- includecpp/templates/cpp.proj.template,sha256=Iy-L8I4Cl3tIgBMx1Qp5h6gURvkqOAqyodVHuDJ0Luw,359
53
+ includecpp/templates/cpp.proj.template,sha256=9J6MRmv5_4ToBVpIRZdLUTbIKmVCX4xFvB6WpzKY6XE,357
52
54
  includecpp/vscode/__init__.py,sha256=yLKw-_7MTX1Rx3jLk5JjharJQfFXbwtZVE7YqHpM7yg,39
53
55
  includecpp/vscode/cssl/__init__.py,sha256=rQJAx5X05v-mAwqX1Qb-rbZO219iR73MziFNRUCNUIo,31
54
56
  includecpp/vscode/cssl/extension.js,sha256=FZaKfOpzo2jXtubVCZmnhDZd4eUVHltm5VW_fgNnSkE,4327
@@ -56,11 +58,11 @@ includecpp/vscode/cssl/language-configuration.json,sha256=61Q00cKI9may5L8YpxMmvf
56
58
  includecpp/vscode/cssl/package.json,sha256=v0QNcE1u_F2BzHBzLy6nztZWl_OMYgoomHG-0g24S-U,6931
57
59
  includecpp/vscode/cssl/images/cssl.png,sha256=BxAGsnfS0ZzzCvqV6Zb1OAJAZpDUoXlR86MsvUGlSZw,510
58
60
  includecpp/vscode/cssl/images/cssl_pl.png,sha256=z4WMk7g6YCTbUUbSFk343BO6yi_OmNEVYkRenWGydwM,799
59
- includecpp/vscode/cssl/snippets/cssl.snippets.json,sha256=uV3nHJyQ5f7Pr3FzfbQT2VZOEY3AlGs4wrmqe884jm4,37372
60
- includecpp/vscode/cssl/syntaxes/cssl.tmLanguage.json,sha256=DOruG97tnY-OuQqiGciXwUE9kofb1THb03kKMhUQ4-E,49505
61
- includecpp-4.6.0.dist-info/licenses/LICENSE,sha256=fWCsGGsiWZir0UzDd20Hh-3wtRyk1zqUntvtVuAWhvc,1093
62
- includecpp-4.6.0.dist-info/METADATA,sha256=anyL7_yXEwoh_NJAiPsMZbj8x8-nssSIeRm6d9l7G1U,5887
63
- includecpp-4.6.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
64
- includecpp-4.6.0.dist-info/entry_points.txt,sha256=6A5Mif9gi0139Bf03W5plAb3wnAgbNaEVe1HJoGE-2o,59
65
- includecpp-4.6.0.dist-info/top_level.txt,sha256=RFUaR1KG-M6mCYwP6w4ydP5Cgc8yNbP78jxGAvyjMa8,11
66
- includecpp-4.6.0.dist-info/RECORD,,
61
+ includecpp/vscode/cssl/snippets/cssl.snippets.json,sha256=nhxTaYXvDDKU5dyoQ9LGjDqzAVghV51tkVxNwjSfbuI,42814
62
+ includecpp/vscode/cssl/syntaxes/cssl.tmLanguage.json,sha256=euWuqV2gcphGUgMvRdqExtjooZwL3IB000CNItvswMI,53246
63
+ includecpp-4.9.3.dist-info/licenses/LICENSE,sha256=fWCsGGsiWZir0UzDd20Hh-3wtRyk1zqUntvtVuAWhvc,1093
64
+ includecpp-4.9.3.dist-info/METADATA,sha256=lgk4g_JDtFlJ_iUpN5GEEwG8aso0y6RGuSYLEVeD5w8,8011
65
+ includecpp-4.9.3.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
66
+ includecpp-4.9.3.dist-info/entry_points.txt,sha256=6A5Mif9gi0139Bf03W5plAb3wnAgbNaEVe1HJoGE-2o,59
67
+ includecpp-4.9.3.dist-info/top_level.txt,sha256=RFUaR1KG-M6mCYwP6w4ydP5Cgc8yNbP78jxGAvyjMa8,11
68
+ includecpp-4.9.3.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: setuptools (80.10.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5