IncludeCPP 4.0.2__py3-none-any.whl → 4.2.2__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/CHANGELOG.md +175 -0
- includecpp/DOCUMENTATION.md +593 -0
- includecpp/__init__.py +1 -1
- includecpp/__init__.pyi +4 -1
- includecpp/cli/commands.py +698 -84
- includecpp/core/ai_integration.py +46 -13
- includecpp/core/cpp_api_extensions.pyi +350 -0
- includecpp/core/cssl/CSSL_DOCUMENTATION.md +186 -5
- includecpp/core/cssl/cssl_builtins.py +101 -4
- includecpp/core/cssl/cssl_languages.py +1757 -0
- includecpp/core/cssl/cssl_parser.py +429 -98
- includecpp/core/cssl/cssl_runtime.py +666 -51
- includecpp/core/cssl/cssl_syntax.py +88 -4
- includecpp/core/cssl/cssl_types.py +172 -1
- includecpp/core/cssl_bridge.py +194 -8
- includecpp/core/cssl_bridge.pyi +148 -10
- includecpp/generator/parser.cpp +121 -4
- includecpp/generator/parser.h +6 -0
- includecpp/vscode/cssl/package.json +43 -1
- includecpp/vscode/cssl/syntaxes/cssl.tmLanguage.json +140 -17
- {includecpp-4.0.2.dist-info → includecpp-4.2.2.dist-info}/METADATA +101 -1
- {includecpp-4.0.2.dist-info → includecpp-4.2.2.dist-info}/RECORD +26 -22
- {includecpp-4.0.2.dist-info → includecpp-4.2.2.dist-info}/WHEEL +0 -0
- {includecpp-4.0.2.dist-info → includecpp-4.2.2.dist-info}/entry_points.txt +0 -0
- {includecpp-4.0.2.dist-info → includecpp-4.2.2.dist-info}/licenses/LICENSE +0 -0
- {includecpp-4.0.2.dist-info → includecpp-4.2.2.dist-info}/top_level.txt +0 -0
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
{ "include": "#super-call" },
|
|
16
16
|
{ "include": "#sql-types" },
|
|
17
17
|
{ "include": "#keywords" },
|
|
18
|
+
{ "include": "#typed-declarations" },
|
|
18
19
|
{ "include": "#types" },
|
|
19
20
|
{ "include": "#function-modifiers" },
|
|
20
21
|
{ "include": "#injection-operators" },
|
|
@@ -211,17 +212,21 @@
|
|
|
211
212
|
{ "include": "#constructor-definition" },
|
|
212
213
|
{ "include": "#class-method-definition" },
|
|
213
214
|
{ "include": "#class-member-declaration" },
|
|
215
|
+
{ "include": "#typed-declarations" },
|
|
214
216
|
{ "include": "#types" },
|
|
217
|
+
{ "include": "#function-modifiers" },
|
|
215
218
|
{ "include": "#this-access" },
|
|
216
219
|
{ "include": "#captured-references" },
|
|
217
220
|
{ "include": "#global-references" },
|
|
218
221
|
{ "include": "#shared-references" },
|
|
222
|
+
{ "include": "#instance-references" },
|
|
219
223
|
{ "include": "#strings" },
|
|
220
224
|
{ "include": "#numbers" },
|
|
221
225
|
{ "include": "#keywords" },
|
|
222
226
|
{ "include": "#function-calls" },
|
|
223
227
|
{ "include": "#builtins" },
|
|
224
|
-
{ "include": "#operators" }
|
|
228
|
+
{ "include": "#operators" },
|
|
229
|
+
{ "include": "#constants" }
|
|
225
230
|
]
|
|
226
231
|
},
|
|
227
232
|
{
|
|
@@ -241,17 +246,21 @@
|
|
|
241
246
|
{ "include": "#constructor-definition" },
|
|
242
247
|
{ "include": "#class-method-definition" },
|
|
243
248
|
{ "include": "#class-member-declaration" },
|
|
249
|
+
{ "include": "#typed-declarations" },
|
|
244
250
|
{ "include": "#types" },
|
|
251
|
+
{ "include": "#function-modifiers" },
|
|
245
252
|
{ "include": "#this-access" },
|
|
246
253
|
{ "include": "#captured-references" },
|
|
247
254
|
{ "include": "#global-references" },
|
|
248
255
|
{ "include": "#shared-references" },
|
|
256
|
+
{ "include": "#instance-references" },
|
|
249
257
|
{ "include": "#strings" },
|
|
250
258
|
{ "include": "#numbers" },
|
|
251
259
|
{ "include": "#keywords" },
|
|
252
260
|
{ "include": "#function-calls" },
|
|
253
261
|
{ "include": "#builtins" },
|
|
254
|
-
{ "include": "#operators" }
|
|
262
|
+
{ "include": "#operators" },
|
|
263
|
+
{ "include": "#constants" }
|
|
255
264
|
]
|
|
256
265
|
},
|
|
257
266
|
{
|
|
@@ -267,17 +276,21 @@
|
|
|
267
276
|
{ "include": "#constructor-definition" },
|
|
268
277
|
{ "include": "#class-method-definition" },
|
|
269
278
|
{ "include": "#class-member-declaration" },
|
|
279
|
+
{ "include": "#typed-declarations" },
|
|
270
280
|
{ "include": "#types" },
|
|
281
|
+
{ "include": "#function-modifiers" },
|
|
271
282
|
{ "include": "#this-access" },
|
|
272
283
|
{ "include": "#captured-references" },
|
|
273
284
|
{ "include": "#global-references" },
|
|
274
285
|
{ "include": "#shared-references" },
|
|
286
|
+
{ "include": "#instance-references" },
|
|
275
287
|
{ "include": "#strings" },
|
|
276
288
|
{ "include": "#numbers" },
|
|
277
289
|
{ "include": "#keywords" },
|
|
278
290
|
{ "include": "#function-calls" },
|
|
279
291
|
{ "include": "#builtins" },
|
|
280
|
-
{ "include": "#operators" }
|
|
292
|
+
{ "include": "#operators" },
|
|
293
|
+
{ "include": "#constants" }
|
|
281
294
|
]
|
|
282
295
|
}
|
|
283
296
|
]
|
|
@@ -354,11 +367,42 @@
|
|
|
354
367
|
"class-member-declaration": {
|
|
355
368
|
"patterns": [
|
|
356
369
|
{
|
|
370
|
+
"comment": "Generic type member: datastruct<dynamic> Container;",
|
|
371
|
+
"name": "meta.member.generic.cssl",
|
|
372
|
+
"match": "(\\b(?:array|vector|stack|list|dictionary|dict|map|datastruct|dataspace|shuffled|iterator|combo|openquote|tuple|set|queue))(<)([^>]+)(>)\\s+([a-zA-Z_][a-zA-Z0-9_]*)\\s*;",
|
|
373
|
+
"captures": {
|
|
374
|
+
"1": { "name": "support.type.cssl" },
|
|
375
|
+
"2": { "name": "punctuation.definition.typeparameters.begin.cssl" },
|
|
376
|
+
"3": { "name": "support.type.cssl" },
|
|
377
|
+
"4": { "name": "punctuation.definition.typeparameters.end.cssl" },
|
|
378
|
+
"5": { "name": "variable.other.declaration.cssl" }
|
|
379
|
+
}
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"comment": "Primitive type member: string ApiID;",
|
|
357
383
|
"name": "meta.member.cssl",
|
|
358
|
-
"match": "\\b(int|string|float|bool|dynamic|auto)\\s+([a-zA-Z_][a-zA-Z0-9_]*)\\s*;",
|
|
384
|
+
"match": "\\b(int|string|float|bool|dynamic|auto|void|json|long|double)\\s+([a-zA-Z_][a-zA-Z0-9_]*)\\s*;",
|
|
359
385
|
"captures": {
|
|
360
|
-
"1": { "name": "
|
|
361
|
-
"2": { "name": "variable.other.
|
|
386
|
+
"1": { "name": "support.type.cssl" },
|
|
387
|
+
"2": { "name": "variable.other.declaration.cssl" }
|
|
388
|
+
}
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"comment": "Container type member without generic: list items;",
|
|
392
|
+
"name": "meta.member.container.cssl",
|
|
393
|
+
"match": "\\b(array|vector|stack|list|dictionary|dict|map|datastruct|dataspace|shuffled|iterator|combo|openquote|tuple|set|queue)\\s+([a-zA-Z_][a-zA-Z0-9_]*)\\s*;",
|
|
394
|
+
"captures": {
|
|
395
|
+
"1": { "name": "support.type.cssl" },
|
|
396
|
+
"2": { "name": "variable.other.declaration.cssl" }
|
|
397
|
+
}
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"comment": "Primitive type member with assignment: string ApiID = value;",
|
|
401
|
+
"name": "meta.member.assigned.cssl",
|
|
402
|
+
"match": "\\b(int|string|float|bool|dynamic|auto|void|json|long|double)\\s+([a-zA-Z_][a-zA-Z0-9_]*)\\s*=",
|
|
403
|
+
"captures": {
|
|
404
|
+
"1": { "name": "support.type.cssl" },
|
|
405
|
+
"2": { "name": "variable.other.declaration.cssl" }
|
|
362
406
|
}
|
|
363
407
|
}
|
|
364
408
|
]
|
|
@@ -440,10 +484,65 @@
|
|
|
440
484
|
}
|
|
441
485
|
]
|
|
442
486
|
},
|
|
487
|
+
"typed-declarations": {
|
|
488
|
+
"patterns": [
|
|
489
|
+
{
|
|
490
|
+
"comment": "Generic type declaration: datastruct<dynamic> Container; or vector<int> items;",
|
|
491
|
+
"name": "meta.declaration.typed.generic.cssl",
|
|
492
|
+
"match": "(\\b(?:array|vector|stack|list|dictionary|dict|map|datastruct|dataspace|shuffled|iterator|combo|openquote|tuple|set|queue))(<)([^>]+)(>)\\s+([a-zA-Z_][a-zA-Z0-9_]*)",
|
|
493
|
+
"captures": {
|
|
494
|
+
"1": { "name": "support.type.cssl" },
|
|
495
|
+
"2": { "name": "punctuation.definition.typeparameters.begin.cssl" },
|
|
496
|
+
"3": { "name": "support.type.cssl" },
|
|
497
|
+
"4": { "name": "punctuation.definition.typeparameters.end.cssl" },
|
|
498
|
+
"5": { "name": "variable.other.declaration.cssl" }
|
|
499
|
+
}
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
"comment": "Primitive type declaration: string ID; or int count;",
|
|
503
|
+
"name": "meta.declaration.typed.primitive.cssl",
|
|
504
|
+
"match": "\\b(int|string|float|bool|void|json|dynamic|auto|long|double)\\s+([a-zA-Z_][a-zA-Z0-9_]*)\\s*(?=[;=])",
|
|
505
|
+
"captures": {
|
|
506
|
+
"1": { "name": "support.type.cssl" },
|
|
507
|
+
"2": { "name": "variable.other.declaration.cssl" }
|
|
508
|
+
}
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
"comment": "Container type declaration without generic: list items;",
|
|
512
|
+
"name": "meta.declaration.typed.container.cssl",
|
|
513
|
+
"match": "\\b(array|vector|stack|list|dictionary|dict|map|datastruct|dataspace|shuffled|iterator|combo|openquote|tuple|set|queue)\\s+([a-zA-Z_][a-zA-Z0-9_]*)\\s*(?=[;=])",
|
|
514
|
+
"captures": {
|
|
515
|
+
"1": { "name": "support.type.cssl" },
|
|
516
|
+
"2": { "name": "variable.other.declaration.cssl" }
|
|
517
|
+
}
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"comment": "Generic type in function parameter: func(datastruct<dynamic> param)",
|
|
521
|
+
"name": "meta.parameter.typed.generic.cssl",
|
|
522
|
+
"match": "(\\b(?:array|vector|stack|list|dictionary|dict|map|datastruct|dataspace|shuffled|iterator|combo|openquote|tuple|set|queue))(<)([^>]+)(>)\\s+([a-zA-Z_][a-zA-Z0-9_]*)\\s*(?=[,)])",
|
|
523
|
+
"captures": {
|
|
524
|
+
"1": { "name": "support.type.cssl" },
|
|
525
|
+
"2": { "name": "punctuation.definition.typeparameters.begin.cssl" },
|
|
526
|
+
"3": { "name": "support.type.cssl" },
|
|
527
|
+
"4": { "name": "punctuation.definition.typeparameters.end.cssl" },
|
|
528
|
+
"5": { "name": "variable.parameter.cssl" }
|
|
529
|
+
}
|
|
530
|
+
},
|
|
531
|
+
{
|
|
532
|
+
"comment": "Primitive type in function parameter: func(string name)",
|
|
533
|
+
"name": "meta.parameter.typed.primitive.cssl",
|
|
534
|
+
"match": "\\b(int|string|float|bool|void|json|dynamic|auto|long|double)\\s+([a-zA-Z_][a-zA-Z0-9_]*)\\s*(?=[,)])",
|
|
535
|
+
"captures": {
|
|
536
|
+
"1": { "name": "support.type.cssl" },
|
|
537
|
+
"2": { "name": "variable.parameter.cssl" }
|
|
538
|
+
}
|
|
539
|
+
}
|
|
540
|
+
]
|
|
541
|
+
},
|
|
443
542
|
"types": {
|
|
444
543
|
"patterns": [
|
|
445
544
|
{
|
|
446
|
-
"name": "
|
|
545
|
+
"name": "support.type.cssl",
|
|
447
546
|
"match": "\\b(int|string|float|bool|void|json|dynamic|auto|long|double)\\b"
|
|
448
547
|
},
|
|
449
548
|
{
|
|
@@ -451,18 +550,18 @@
|
|
|
451
550
|
"name": "meta.generic.cssl",
|
|
452
551
|
"match": "(\\b(?:array|vector|stack|list|dictionary|dict|map|datastruct|dataspace|shuffled|iterator|combo|openquote|tuple|set|queue))(<)([^>]+)(>)",
|
|
453
552
|
"captures": {
|
|
454
|
-
"1": { "name": "
|
|
553
|
+
"1": { "name": "support.type.cssl" },
|
|
455
554
|
"2": { "name": "punctuation.definition.typeparameters.begin.cssl" },
|
|
456
|
-
"3": { "name": "
|
|
555
|
+
"3": { "name": "support.type.cssl" },
|
|
457
556
|
"4": { "name": "punctuation.definition.typeparameters.end.cssl" }
|
|
458
557
|
}
|
|
459
558
|
},
|
|
460
559
|
{
|
|
461
|
-
"name": "
|
|
560
|
+
"name": "support.type.cssl",
|
|
462
561
|
"match": "\\b(array|vector|stack|list|dictionary|dict|map|datastruct|dataspace|shuffled|iterator|combo|openquote|instance|tuple|set|queue)\\b"
|
|
463
562
|
},
|
|
464
563
|
{
|
|
465
|
-
"name": "
|
|
564
|
+
"name": "support.type.cssl",
|
|
466
565
|
"match": "\\bcombo\\s*<\\s*open\\s*&"
|
|
467
566
|
}
|
|
468
567
|
]
|
|
@@ -471,7 +570,7 @@
|
|
|
471
570
|
"patterns": [
|
|
472
571
|
{
|
|
473
572
|
"name": "storage.modifier.cssl",
|
|
474
|
-
"match": "\\b(undefined|open|closed|private|virtual|meta|super|sqlbased|protected|limited)\\b"
|
|
573
|
+
"match": "\\b(undefined|open|closed|private|virtual|meta|super|sqlbased|protected|limited|const|static|final|abstract|readonly)\\b"
|
|
475
574
|
}
|
|
476
575
|
]
|
|
477
576
|
},
|
|
@@ -619,24 +718,48 @@
|
|
|
619
718
|
"instance-references": {
|
|
620
719
|
"patterns": [
|
|
621
720
|
{
|
|
622
|
-
"comment": "instance<\"name\"> - shared instance
|
|
721
|
+
"comment": "instance<\"name\"> varName - shared instance declaration with variable",
|
|
722
|
+
"name": "meta.instance.declaration.cssl",
|
|
723
|
+
"match": "(\\binstance)(<)(\"[^\"]+\")(>)\\s+([a-zA-Z_][a-zA-Z0-9_]*)",
|
|
724
|
+
"captures": {
|
|
725
|
+
"1": { "name": "support.type.cssl" },
|
|
726
|
+
"2": { "name": "punctuation.definition.typeparameters.begin.cssl" },
|
|
727
|
+
"3": { "name": "string.quoted.double.cssl" },
|
|
728
|
+
"4": { "name": "punctuation.definition.typeparameters.end.cssl" },
|
|
729
|
+
"5": { "name": "variable.other.declaration.cssl" }
|
|
730
|
+
}
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
"comment": "instance<Type> varName - shared instance declaration with type and variable",
|
|
734
|
+
"name": "meta.instance.declaration.cssl",
|
|
735
|
+
"match": "(\\binstance)(<)([a-zA-Z_][a-zA-Z0-9_]*)(>)\\s+([a-zA-Z_][a-zA-Z0-9_]*)",
|
|
736
|
+
"captures": {
|
|
737
|
+
"1": { "name": "support.type.cssl" },
|
|
738
|
+
"2": { "name": "punctuation.definition.typeparameters.begin.cssl" },
|
|
739
|
+
"3": { "name": "support.type.cssl" },
|
|
740
|
+
"4": { "name": "punctuation.definition.typeparameters.end.cssl" },
|
|
741
|
+
"5": { "name": "variable.other.declaration.cssl" }
|
|
742
|
+
}
|
|
743
|
+
},
|
|
744
|
+
{
|
|
745
|
+
"comment": "instance<\"name\"> - shared instance reference without variable",
|
|
623
746
|
"name": "meta.instance.cssl",
|
|
624
747
|
"match": "(\\binstance)(<)(\"[^\"]+\")(>)",
|
|
625
748
|
"captures": {
|
|
626
|
-
"1": { "name": "
|
|
749
|
+
"1": { "name": "support.type.cssl" },
|
|
627
750
|
"2": { "name": "punctuation.definition.typeparameters.begin.cssl" },
|
|
628
751
|
"3": { "name": "string.quoted.double.cssl" },
|
|
629
752
|
"4": { "name": "punctuation.definition.typeparameters.end.cssl" }
|
|
630
753
|
}
|
|
631
754
|
},
|
|
632
755
|
{
|
|
633
|
-
"comment": "instance<Type> - shared instance reference
|
|
756
|
+
"comment": "instance<Type> - shared instance reference without variable",
|
|
634
757
|
"name": "meta.instance.cssl",
|
|
635
758
|
"match": "(\\binstance)(<)([a-zA-Z_][a-zA-Z0-9_]*)(>)",
|
|
636
759
|
"captures": {
|
|
637
|
-
"1": { "name": "
|
|
760
|
+
"1": { "name": "support.type.cssl" },
|
|
638
761
|
"2": { "name": "punctuation.definition.typeparameters.begin.cssl" },
|
|
639
|
-
"3": { "name": "
|
|
762
|
+
"3": { "name": "support.type.cssl" },
|
|
640
763
|
"4": { "name": "punctuation.definition.typeparameters.end.cssl" }
|
|
641
764
|
}
|
|
642
765
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: IncludeCPP
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.2.2
|
|
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
|
|
@@ -906,3 +906,103 @@ print(greeter.name) # "Python"
|
|
|
906
906
|
- `python::export(instance)` - Alias
|
|
907
907
|
|
|
908
908
|
All three do the same thing: wrap a CSSL class instance for Python use.
|
|
909
|
+
|
|
910
|
+
## Universal Instances (v4.0.3+)
|
|
911
|
+
|
|
912
|
+
Universal instances are shared containers accessible from CSSL, Python, and C++:
|
|
913
|
+
|
|
914
|
+
```python
|
|
915
|
+
from includecpp import CSSL
|
|
916
|
+
|
|
917
|
+
cssl = CSSL.CsslLang()
|
|
918
|
+
|
|
919
|
+
# Create in CSSL
|
|
920
|
+
cssl.run('''
|
|
921
|
+
instance<"myContainer"> container;
|
|
922
|
+
container.data = "Hello";
|
|
923
|
+
container.count = 42;
|
|
924
|
+
''')
|
|
925
|
+
|
|
926
|
+
# Access from Python
|
|
927
|
+
container = cssl.getInstance("myContainer")
|
|
928
|
+
print(container.data) # "Hello"
|
|
929
|
+
print(container.count) # 42
|
|
930
|
+
|
|
931
|
+
# Modify from Python
|
|
932
|
+
container.newValue = "Added from Python"
|
|
933
|
+
|
|
934
|
+
# Changes reflect in CSSL
|
|
935
|
+
cssl.run('''
|
|
936
|
+
instance<"myContainer"> c;
|
|
937
|
+
printl(c.newValue); // "Added from Python"
|
|
938
|
+
''')
|
|
939
|
+
```
|
|
940
|
+
|
|
941
|
+
### Instance Methods
|
|
942
|
+
|
|
943
|
+
```python
|
|
944
|
+
cssl.getInstance("name") # Get instance (None if not found)
|
|
945
|
+
cssl.createInstance("name") # Create or get instance
|
|
946
|
+
cssl.deleteInstance("name") # Delete instance
|
|
947
|
+
cssl.listInstances() # List all instance names
|
|
948
|
+
```
|
|
949
|
+
|
|
950
|
+
### Method Injection
|
|
951
|
+
|
|
952
|
+
Inject methods into instances using `+<<==`:
|
|
953
|
+
|
|
954
|
+
```cssl
|
|
955
|
+
instance<"api"> api;
|
|
956
|
+
|
|
957
|
+
// Inject a method
|
|
958
|
+
api +<<== {
|
|
959
|
+
void greet(string name) {
|
|
960
|
+
printl("Hello, " + name + "!");
|
|
961
|
+
}
|
|
962
|
+
};
|
|
963
|
+
|
|
964
|
+
api.greet("World"); // Hello, World!
|
|
965
|
+
```
|
|
966
|
+
|
|
967
|
+
## Simplified Module API (v4.0.2+)
|
|
968
|
+
|
|
969
|
+
Create CSSL modules from files with payload binding:
|
|
970
|
+
|
|
971
|
+
```python
|
|
972
|
+
from includecpp import CSSL
|
|
973
|
+
|
|
974
|
+
# Register payload from file
|
|
975
|
+
CSSL.makepayload("api", "lib/api/myapi.cssl-pl")
|
|
976
|
+
|
|
977
|
+
# Create module from file, binding to payload
|
|
978
|
+
mod = CSSL.makemodule("writer", "lib/writer.cssl", bind="api")
|
|
979
|
+
mod.SaySomething("Hello!") # Call functions directly
|
|
980
|
+
```
|
|
981
|
+
|
|
982
|
+
## VSCode Extension
|
|
983
|
+
|
|
984
|
+
IncludeCPP includes a VSCode extension for CSSL syntax highlighting.
|
|
985
|
+
|
|
986
|
+
### Installation
|
|
987
|
+
|
|
988
|
+
```bash
|
|
989
|
+
# Copy extension to VSCode extensions folder
|
|
990
|
+
# Windows: %USERPROFILE%\.vscode\extensions\
|
|
991
|
+
# Linux/Mac: ~/.vscode/extensions/
|
|
992
|
+
|
|
993
|
+
# Or install from included files
|
|
994
|
+
pip show includecpp # Find package location
|
|
995
|
+
# Copy vscode/cssl folder to extensions
|
|
996
|
+
```
|
|
997
|
+
|
|
998
|
+
### Features
|
|
999
|
+
|
|
1000
|
+
- Syntax highlighting for `.cssl`, `.cssl-pl`, `.cssl-mod` files
|
|
1001
|
+
- Snippets for common patterns
|
|
1002
|
+
- Run CSSL files with F5
|
|
1003
|
+
- Proper coloring for:
|
|
1004
|
+
- Keywords and control flow
|
|
1005
|
+
- Data types (purple/lilac)
|
|
1006
|
+
- Variable declarations (light blue)
|
|
1007
|
+
- Injection operators (`<<==`, `<==`)
|
|
1008
|
+
- Global (`@`), shared (`$`), and captured (`%`) references
|
|
@@ -1,38 +1,42 @@
|
|
|
1
|
-
includecpp/
|
|
2
|
-
includecpp/
|
|
1
|
+
includecpp/CHANGELOG.md,sha256=vvu64zkKSGOGmyRVp6sYRi8fhOxStU6TzwgjoV30BAs,5732
|
|
2
|
+
includecpp/DOCUMENTATION.md,sha256=DuDN5EesEv9h-uTgJpNNBTi3R-RibXjrGfIKUK6uEg0,9762
|
|
3
|
+
includecpp/__init__.py,sha256=H919cTs7I9eEHaskdRMmBob6NLdoOpJfHYskGwhwsdM,1672
|
|
4
|
+
includecpp/__init__.pyi,sha256=gfpArSojafkBCUoACntpnPBVgKLPZHecsyJtlVhE1A0,7267
|
|
3
5
|
includecpp/__main__.py,sha256=d6QK0PkvUe1ENofpmHRAg3bwNbZr8PiRscfI3-WRfVg,72
|
|
4
6
|
includecpp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
7
|
includecpp/cli/__init__.py,sha256=Yda-4a5QJb_tKu35YQNfc5lu-LewTsM5abqNNkzS47M,113
|
|
6
|
-
includecpp/cli/commands.py,sha256=
|
|
8
|
+
includecpp/cli/commands.py,sha256=7Cu1zgXmK6ghOebzKqTwZHXvROHWpqiYHKnrBW3g0ZA,372152
|
|
7
9
|
includecpp/cli/config_parser.py,sha256=KveeYUg2TA9sC5hKVzYYfgdNm2WfLG5y7_yxgBWn9yM,4886
|
|
8
10
|
includecpp/core/__init__.py,sha256=L1bT6oikTjdto-6Px7DpjePtM07ymo3Bnov1saZzsGg,390
|
|
9
|
-
includecpp/core/ai_integration.py,sha256=
|
|
11
|
+
includecpp/core/ai_integration.py,sha256=Q44Y1SD_4yXETO4AwtoR51QnX0T4Tc14_Ux9VozQJhQ,89146
|
|
10
12
|
includecpp/core/build_manager.py,sha256=uLuYsuiC6OsOGaU5wAJfl4M3IbdnIDgogfMd8VsVpq8,102866
|
|
11
13
|
includecpp/core/cpp_api.py,sha256=8y_B1L18rhSBZln654xPPzqO2PdvAlLpJrfEjzl7Wnc,14039
|
|
12
14
|
includecpp/core/cpp_api.pyi,sha256=IEiaKqaPItnn6rjL7aK32D3o9FYmRYCgCZbqiQNUwdc,3496
|
|
15
|
+
includecpp/core/cpp_api_extensions.pyi,sha256=Eb_QywS4qpRRsMvHCYxoeBQ8Vw0P1ffu-rwzTIpvpnE,10622
|
|
13
16
|
includecpp/core/cppy_converter.py,sha256=b7yqu-aoa0wShNY0GvQT67TnNhYya4GyYmG7oDdqDV4,156686
|
|
14
|
-
includecpp/core/cssl_bridge.py,sha256=
|
|
15
|
-
includecpp/core/cssl_bridge.pyi,sha256=
|
|
17
|
+
includecpp/core/cssl_bridge.py,sha256=xYfIRagegO8irdWl97dfanRB1qLU80p9lQ2wxkttGQ4,49963
|
|
18
|
+
includecpp/core/cssl_bridge.pyi,sha256=nreh2gtK94I6VFrzTWcYVUHN97wcYQF0dY_-HySi7yQ,28787
|
|
16
19
|
includecpp/core/error_catalog.py,sha256=VS3N-P0yEbiHimsDPtcaYfrUb7mXQ-7pqw18PtSngaU,33869
|
|
17
20
|
includecpp/core/error_formatter.py,sha256=7-MzRIT8cM4uODxy0IZ9pu7pqR4Pq2I8Si0QQZHjmVc,39239
|
|
18
21
|
includecpp/core/exceptions.py,sha256=szeF4qdzi_q8hBBZi7mJxkliyQ0crplkLYe0ymlBGtk,2459
|
|
19
22
|
includecpp/core/path_discovery.py,sha256=jI0oSq6Hsd4LKXmU4dOiGSrXcEO_KWMXfQ5_ylBmXvU,2561
|
|
20
23
|
includecpp/core/project_ui.py,sha256=la2EQZKmUkJGuJxnbs09hH1ZhBh9bfndo6okzZsk2dQ,141134
|
|
21
24
|
includecpp/core/settings_ui.py,sha256=B2SlwgdplF2KiBk5UYf2l8Jjifjd0F-FmBP0DPsVCEQ,11798
|
|
22
|
-
includecpp/core/cssl/CSSL_DOCUMENTATION.md,sha256=
|
|
25
|
+
includecpp/core/cssl/CSSL_DOCUMENTATION.md,sha256=M55jgDBNrgjcLQHpdN5KbHvwLWgV7SQBGEAGEFFmNCo,36847
|
|
23
26
|
includecpp/core/cssl/CSSL_DOCUMENTATION_NEW.md,sha256=I_bVeKWlbcgHYkl2o9L2vk3r5sDvG44bGh__RJIYduw,28222
|
|
24
27
|
includecpp/core/cssl/__init__.py,sha256=scDXRBNK2L6A8qmlpNyaqQj6BFcSfPInBlucdeNfMF0,1975
|
|
25
|
-
includecpp/core/cssl/cssl_builtins.py,sha256=
|
|
28
|
+
includecpp/core/cssl/cssl_builtins.py,sha256=x8bKQ2WEzxjkFWmGb6dK2jggiylkj04-6f15iDwEi_U,108791
|
|
26
29
|
includecpp/core/cssl/cssl_builtins.pyi,sha256=-yr9JbxHKFv9Vc1iufChcqCQvNQLL3-Ow_Hgg0YwQnc,135180
|
|
27
30
|
includecpp/core/cssl/cssl_events.py,sha256=nupIcXW_Vjdud7zCU6hdwkQRQ0MujlPM7Tk2u7eDAiY,21013
|
|
31
|
+
includecpp/core/cssl/cssl_languages.py,sha256=qftMcBiNT1pbIn5OniTZDx8rFtGYU4yx4Iw1QYKAC1U,62342
|
|
28
32
|
includecpp/core/cssl/cssl_modules.py,sha256=cUg0-zdymMnWWTsA_BUrW5dx4R04dHpKcUhm-Wfiwwo,103006
|
|
29
|
-
includecpp/core/cssl/cssl_parser.py,sha256=
|
|
30
|
-
includecpp/core/cssl/cssl_runtime.py,sha256=
|
|
31
|
-
includecpp/core/cssl/cssl_syntax.py,sha256=
|
|
32
|
-
includecpp/core/cssl/cssl_types.py,sha256=
|
|
33
|
+
includecpp/core/cssl/cssl_parser.py,sha256=ZceGO7M2DJWt1aAORlsRWliKo3E-tcMRLs6GFEx46jg,170350
|
|
34
|
+
includecpp/core/cssl/cssl_runtime.py,sha256=6jz6XnjjEZlWDuHxUhiiuM3HwkT4Ah74yRQqUCfw_KY,237635
|
|
35
|
+
includecpp/core/cssl/cssl_syntax.py,sha256=AcFvqCB9WKitNA32izCWf5jeFWNc6ncc-xLw0J5UjBg,20933
|
|
36
|
+
includecpp/core/cssl/cssl_types.py,sha256=Vs61dnMh8iUxVu7LPz8HM-XyojuQptykkedlVA3J2Bc,60031
|
|
33
37
|
includecpp/generator/__init__.py,sha256=Rsy41bwimaEloD3gDRR_znPfIJzIsCFuWZgCTJBLJlc,62
|
|
34
|
-
includecpp/generator/parser.cpp,sha256=
|
|
35
|
-
includecpp/generator/parser.h,sha256=
|
|
38
|
+
includecpp/generator/parser.cpp,sha256=KT_rrZFJi8KF6emstIW5lKOMaD5gOTC9IcrGEIuIuYw,83251
|
|
39
|
+
includecpp/generator/parser.h,sha256=z8qHnsiY8cXAwq5JW9O-V-hCSjDQacYLgi91ViqzHSw,11405
|
|
36
40
|
includecpp/generator/type_resolver.cpp,sha256=MmFK_4HXd1wqxALDiDyXVuU397SXoQL_o5zb_8N8Hzs,12346
|
|
37
41
|
includecpp/generator/type_resolver.h,sha256=ZsaxQqcCcKJJApYn7KOp2dLlQ1VFVG_oZDjaK5LhBSg,2590
|
|
38
42
|
includecpp/templates/cpp.proj.template,sha256=Iy-L8I4Cl3tIgBMx1Qp5h6gURvkqOAqyodVHuDJ0Luw,359
|
|
@@ -40,14 +44,14 @@ includecpp/vscode/__init__.py,sha256=yLKw-_7MTX1Rx3jLk5JjharJQfFXbwtZVE7YqHpM7yg
|
|
|
40
44
|
includecpp/vscode/cssl/__init__.py,sha256=rQJAx5X05v-mAwqX1Qb-rbZO219iR73MziFNRUCNUIo,31
|
|
41
45
|
includecpp/vscode/cssl/extension.js,sha256=FZaKfOpzo2jXtubVCZmnhDZd4eUVHltm5VW_fgNnSkE,4327
|
|
42
46
|
includecpp/vscode/cssl/language-configuration.json,sha256=61Q00cKI9may5L8YpxMmvfo6PAc-abdJqApfR85DWuw,904
|
|
43
|
-
includecpp/vscode/cssl/package.json,sha256=
|
|
47
|
+
includecpp/vscode/cssl/package.json,sha256=u5iHl79-GfeJiQ7vPe8DP5hXlOpGP41d1A54bn4Yy6M,6391
|
|
44
48
|
includecpp/vscode/cssl/images/cssl.png,sha256=BxAGsnfS0ZzzCvqV6Zb1OAJAZpDUoXlR86MsvUGlSZw,510
|
|
45
49
|
includecpp/vscode/cssl/images/cssl_pl.png,sha256=z4WMk7g6YCTbUUbSFk343BO6yi_OmNEVYkRenWGydwM,799
|
|
46
50
|
includecpp/vscode/cssl/snippets/cssl.snippets.json,sha256=uV3nHJyQ5f7Pr3FzfbQT2VZOEY3AlGs4wrmqe884jm4,37372
|
|
47
|
-
includecpp/vscode/cssl/syntaxes/cssl.tmLanguage.json,sha256=
|
|
48
|
-
includecpp-4.
|
|
49
|
-
includecpp-4.
|
|
50
|
-
includecpp-4.
|
|
51
|
-
includecpp-4.
|
|
52
|
-
includecpp-4.
|
|
53
|
-
includecpp-4.
|
|
51
|
+
includecpp/vscode/cssl/syntaxes/cssl.tmLanguage.json,sha256=nYy7aRWREcgCu9Jbx5QmtQHfD4WRlk-HkPhqzKVtoIA,42806
|
|
52
|
+
includecpp-4.2.2.dist-info/licenses/LICENSE,sha256=fWCsGGsiWZir0UzDd20Hh-3wtRyk1zqUntvtVuAWhvc,1093
|
|
53
|
+
includecpp-4.2.2.dist-info/METADATA,sha256=g45uGNc1c5Ey2qBgfSXKIvIfn7YK4RhHn6OPtf69hlw,24887
|
|
54
|
+
includecpp-4.2.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
55
|
+
includecpp-4.2.2.dist-info/entry_points.txt,sha256=6A5Mif9gi0139Bf03W5plAb3wnAgbNaEVe1HJoGE-2o,59
|
|
56
|
+
includecpp-4.2.2.dist-info/top_level.txt,sha256=RFUaR1KG-M6mCYwP6w4ydP5Cgc8yNbP78jxGAvyjMa8,11
|
|
57
|
+
includecpp-4.2.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|