IncludeCPP 3.4.10__py3-none-any.whl → 3.5.0__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.
@@ -0,0 +1,221 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/martinring/tmlanguage/master/tmlanguage.json",
3
+ "name": "CSSL",
4
+ "scopeName": "source.cssl",
5
+ "patterns": [
6
+ { "include": "#comments" },
7
+ { "include": "#strings" },
8
+ { "include": "#numbers" },
9
+ { "include": "#keywords" },
10
+ { "include": "#types" },
11
+ { "include": "#function-modifiers" },
12
+ { "include": "#injection-operators" },
13
+ { "include": "#filter-helpers" },
14
+ { "include": "#global-references" },
15
+ { "include": "#shared-references" },
16
+ { "include": "#module-references" },
17
+ { "include": "#function-calls" },
18
+ { "include": "#operators" },
19
+ { "include": "#constants" }
20
+ ],
21
+ "repository": {
22
+ "comments": {
23
+ "patterns": [
24
+ {
25
+ "name": "comment.line.double-slash.cssl",
26
+ "match": "//.*$"
27
+ },
28
+ {
29
+ "name": "comment.block.cssl",
30
+ "begin": "/\\*",
31
+ "end": "\\*/"
32
+ }
33
+ ]
34
+ },
35
+ "strings": {
36
+ "patterns": [
37
+ {
38
+ "name": "string.quoted.double.cssl",
39
+ "begin": "\"",
40
+ "end": "\"",
41
+ "patterns": [
42
+ {
43
+ "name": "constant.character.escape.cssl",
44
+ "match": "\\\\."
45
+ },
46
+ {
47
+ "name": "variable.other.interpolated.cssl",
48
+ "match": "<[a-zA-Z_][a-zA-Z0-9_]*>"
49
+ }
50
+ ]
51
+ },
52
+ {
53
+ "name": "string.quoted.single.cssl",
54
+ "begin": "'",
55
+ "end": "'",
56
+ "patterns": [
57
+ {
58
+ "name": "constant.character.escape.cssl",
59
+ "match": "\\\\."
60
+ }
61
+ ]
62
+ }
63
+ ]
64
+ },
65
+ "numbers": {
66
+ "patterns": [
67
+ {
68
+ "name": "constant.numeric.float.cssl",
69
+ "match": "\\b[0-9]+\\.[0-9]+\\b"
70
+ },
71
+ {
72
+ "name": "constant.numeric.integer.cssl",
73
+ "match": "\\b[0-9]+\\b"
74
+ }
75
+ ]
76
+ },
77
+ "keywords": {
78
+ "patterns": [
79
+ {
80
+ "name": "keyword.control.cssl",
81
+ "match": "\\b(if|else|elif|while|for|foreach|in|range|switch|case|default|break|continue|return|try|catch|finally|throw)\\b"
82
+ },
83
+ {
84
+ "name": "keyword.other.cssl",
85
+ "match": "\\b(service-init|service-run|service-include|struct|structure|define|main|package|package-includes|exec|as|global|include|get|payload)\\b"
86
+ },
87
+ {
88
+ "name": "keyword.operator.logical.cssl",
89
+ "match": "\\b(and|or|not)\\b"
90
+ },
91
+ {
92
+ "name": "keyword.other.async.cssl",
93
+ "match": "\\b(start|stop|wait_for|on_event|emit_event|await)\\b"
94
+ }
95
+ ]
96
+ },
97
+ "types": {
98
+ "patterns": [
99
+ {
100
+ "name": "storage.type.primitive.cssl",
101
+ "match": "\\b(int|string|float|bool|void|json|dynamic)\\b"
102
+ },
103
+ {
104
+ "name": "storage.type.container.cssl",
105
+ "match": "\\b(array|vector|stack|datastruct|dataspace|shuffled|iterator|combo|openquote)\\b"
106
+ },
107
+ {
108
+ "name": "storage.type.generic.cssl",
109
+ "match": "\\b(array|vector|stack|datastruct|dataspace|shuffled|iterator|combo|openquote)\\s*<",
110
+ "captures": {
111
+ "1": { "name": "storage.type.container.cssl" }
112
+ }
113
+ }
114
+ ]
115
+ },
116
+ "function-modifiers": {
117
+ "patterns": [
118
+ {
119
+ "name": "storage.modifier.cssl",
120
+ "match": "\\b(undefined|open|closed|private|virtual|meta|super|sqlbased)\\b"
121
+ }
122
+ ]
123
+ },
124
+ "injection-operators": {
125
+ "patterns": [
126
+ {
127
+ "name": "keyword.operator.injection.cssl",
128
+ "match": "(\\+<<==|<<==|-<<==|==>>\\+|==>>|-==>>)"
129
+ },
130
+ {
131
+ "name": "keyword.operator.brute-injection.cssl",
132
+ "match": "(\\+<==|<==|-<==|==>\\+|==>|-==>)"
133
+ }
134
+ ]
135
+ },
136
+ "filter-helpers": {
137
+ "patterns": [
138
+ {
139
+ "name": "support.function.filter.cssl",
140
+ "match": "\\b(string|integer|json|array|vector|combo|dynamic|sql)::(where|contains|not|startsWith|endsWith|length|lenght|key|value|index|filterdb|blocked|data)\\b"
141
+ }
142
+ ]
143
+ },
144
+ "global-references": {
145
+ "patterns": [
146
+ {
147
+ "name": "variable.other.global.cssl",
148
+ "match": "@[a-zA-Z_][a-zA-Z0-9_]*"
149
+ },
150
+ {
151
+ "name": "variable.other.global-decl.cssl",
152
+ "match": "r@[a-zA-Z_][a-zA-Z0-9_]*"
153
+ },
154
+ {
155
+ "name": "variable.other.self-ref.cssl",
156
+ "match": "s@[a-zA-Z_][a-zA-Z0-9_]*"
157
+ }
158
+ ]
159
+ },
160
+ "shared-references": {
161
+ "patterns": [
162
+ {
163
+ "name": "variable.other.shared.cssl",
164
+ "match": "\\$[a-zA-Z_][a-zA-Z0-9_]*"
165
+ }
166
+ ]
167
+ },
168
+ "module-references": {
169
+ "patterns": [
170
+ {
171
+ "name": "entity.name.type.module.cssl",
172
+ "match": "@[A-Z][a-zA-Z0-9_]*"
173
+ }
174
+ ]
175
+ },
176
+ "function-calls": {
177
+ "patterns": [
178
+ {
179
+ "name": "entity.name.function.cssl",
180
+ "match": "\\b([a-zA-Z_][a-zA-Z0-9_]*)\\s*(?=\\()"
181
+ },
182
+ {
183
+ "name": "support.function.builtin.cssl",
184
+ "match": "\\b(printl|print|println|len|type|toInt|toFloat|toString|toBool|range|input|exit|sleep|OpenFind|parameter\\.get|parameter\\.return)\\b"
185
+ }
186
+ ]
187
+ },
188
+ "operators": {
189
+ "patterns": [
190
+ {
191
+ "name": "keyword.operator.comparison.cssl",
192
+ "match": "(==|!=|<=|>=|<|>)"
193
+ },
194
+ {
195
+ "name": "keyword.operator.arithmetic.cssl",
196
+ "match": "(\\+\\+|--|\\+=|-=|\\+|-|\\*|/|%)"
197
+ },
198
+ {
199
+ "name": "keyword.operator.logical.cssl",
200
+ "match": "(&&|\\|\\||!)"
201
+ },
202
+ {
203
+ "name": "keyword.operator.assignment.cssl",
204
+ "match": "="
205
+ }
206
+ ]
207
+ },
208
+ "constants": {
209
+ "patterns": [
210
+ {
211
+ "name": "constant.language.boolean.cssl",
212
+ "match": "\\b(true|false|True|False)\\b"
213
+ },
214
+ {
215
+ "name": "constant.language.null.cssl",
216
+ "match": "\\b(null|None)\\b"
217
+ }
218
+ ]
219
+ }
220
+ }
221
+ }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: IncludeCPP
3
- Version: 3.4.10
3
+ Version: 3.5.0
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
@@ -621,10 +621,277 @@ Then check **"Enable Experimental Features"** and save.
621
621
  - Have breaking changes between versions
622
622
  - Be removed or significantly changed
623
623
 
624
- Use at your own discretion. Report issues at: https://github.com/hatte/IncludeCPP/issues
624
+ Use at your own discretion. Report issues at: https://github.com/liliassg/IncludeCPP/issues
625
+
626
+ # CSSL - CSO Service Script Language
627
+
628
+ IncludeCPP includes CSSL, a scripting language with advanced data manipulation features.
629
+
630
+ ## Basic Usage
631
+
632
+ ```python
633
+ from includecpp import CSSL
634
+
635
+ # Execute CSSL code
636
+ CSSL.exec('''
637
+ printl("Hello from CSSL!");
638
+
639
+ int x = 10;
640
+ for (i in range(0, 5)) {
641
+ x = x + i;
642
+ }
643
+ printl(x);
644
+ ''')
645
+
646
+ # Execute with arguments
647
+ result = CSSL.exec('''
648
+ int a = parameter.get(0);
649
+ int b = parameter.get(1);
650
+ parameter.return(a + b);
651
+ ''', 5, 3)
652
+ print(result) # 8
653
+ ```
654
+
655
+ ## Live Object Sharing
656
+
657
+ Share Python objects with CSSL scripts. Changes in CSSL reflect back to Python:
658
+
659
+ ```python
660
+ from includecpp import CSSL
661
+
662
+ class Counter:
663
+ def __init__(self):
664
+ self.value = 100
665
+
666
+ counter = Counter()
667
+ cssl = CSSL.CsslLang()
668
+ cssl.share(counter, "cnt")
669
+
670
+ # Modify in CSSL - changes reflect in Python!
671
+ cssl.exec('''
672
+ $cnt.value = $cnt.value - 10;
673
+ printl($cnt.value); // 90
674
+ ''')
675
+
676
+ print(counter.value) # 90 - Changed!
677
+ ```
678
+
679
+ ### Shared Object Syntax
680
+
681
+ - `$name` - Access shared object
682
+ - `$name.property` - Access/modify properties
683
+ - `$name.method()` - Call methods
684
+ - `delete("name")` - Remove shared object
685
+
686
+ ## Data Types
687
+
688
+ ```cssl
689
+ // Basic types
690
+ int x = 42;
691
+ float pi = 3.14;
692
+ string name = "CSSL";
693
+ bool active = true;
694
+
695
+ // Collections
696
+ array<int> arr;
697
+ arr.push(1);
698
+ arr.push(2);
699
+ printl(arr.length()); // 2
700
+
701
+ vector<string> vec;
702
+ vec.push("A");
703
+ vec.push("B");
704
+
705
+ stack<int> s;
706
+ s.push(10);
707
+ s.pop();
708
+ ```
709
+
710
+ ## Control Flow
711
+
712
+ ```cssl
713
+ // If/elif/else
714
+ if (x > 10) {
715
+ printl("big");
716
+ } elif (x > 5) {
717
+ printl("medium");
718
+ } else {
719
+ printl("small");
720
+ }
721
+
722
+ // For loops
723
+ for (i in range(0, 10)) {
724
+ printl(i);
725
+ }
726
+
727
+ for (i in range(0, 10, 2)) { // with step
728
+ printl(i); // 0, 2, 4, 6, 8
729
+ }
730
+
731
+ // Foreach
732
+ array<string> items;
733
+ items.push("A");
734
+ items.push("B");
735
+ foreach (item in items) {
736
+ printl(item);
737
+ }
738
+
739
+ // While
740
+ int count = 0;
741
+ while (count < 5) {
742
+ printl(count);
743
+ count = count + 1;
744
+ }
745
+ ```
746
+
747
+ ## Functions
748
+
749
+ ```cssl
750
+ // Basic function
751
+ void greet(string name) {
752
+ printl("Hello, " + name + "!");
753
+ }
754
+
755
+ // Return value
756
+ int add(int a, int b) {
757
+ return a + b;
758
+ }
759
+
760
+ // Global variables
761
+ global version = "1.0.0";
762
+ printl(@version);
763
+
764
+ // r@ syntax for global declaration
765
+ r@myGlobal = "value";
766
+ printl(@myGlobal);
767
+ ```
768
+
769
+ ## BruteForce Injection System
770
+
771
+ CSSL's unique injection operators for data manipulation:
772
+
773
+ ```cssl
774
+ // <== Move data (replaces target)
775
+ target <== source;
776
+
777
+ // +<== Copy & add to target
778
+ target +<== source;
779
+
780
+ // -<== Move & remove from source
781
+ target -<== source;
782
+
783
+ // <<== Code infusion into functions
784
+ myFunc() <<== {
785
+ printl("Injected code!");
786
+ };
787
+
788
+ // +<<== Add code without replacing
789
+ myFunc() +<<== {
790
+ printl("Additional code!");
791
+ };
792
+ ```
793
+
794
+ ## String Methods
795
+
796
+ ```cssl
797
+ string s = "Hello World";
798
+
799
+ // Methods
800
+ s.length(); // 11
801
+ s.toUpper(); // "HELLO WORLD"
802
+ s.toLower(); // "hello world"
803
+ s.contains("World"); // true
804
+ s.startsWith("Hello"); // true
805
+ s.endsWith("World"); // true
806
+ s.replace("World", "CSSL");
807
+ s.split(" "); // ["Hello", "World"]
808
+ s.trim(); // Remove whitespace
809
+ s.substring(0, 5); // "Hello"
810
+ ```
811
+
812
+ ## CSSL Modules
813
+
814
+ ```python
815
+ # Create callable module
816
+ module = CSSL.module('''
817
+ string name = parameter.get(0);
818
+ printl("Hello, " + name + "!");
819
+ ''')
820
+ module("World") # Prints: Hello, World!
821
+
822
+ # Create module with functions
823
+ math_mod = CSSL.makemodule('''
824
+ int add(int a, int b) {
825
+ return a + b;
826
+ }
827
+
828
+ int multiply(int a, int b) {
829
+ return a * b;
830
+ }
831
+ ''')
832
+ print(math_mod.add(2, 3)) # 5
833
+ print(math_mod.multiply(4, 5)) # 20
834
+ ```
835
+
836
+ ## Inline Payloads
837
+
838
+ ```python
839
+ cssl = CSSL.CsslLang()
840
+
841
+ # Register code as payload
842
+ cssl.code("helpers", '''
843
+ global version = "1.0.0";
844
+ void log(string msg) {
845
+ printl("[LOG] " + msg);
846
+ }
847
+ ''')
848
+
849
+ # Use in CSSL
850
+ cssl.exec('''
851
+ payload("helpers");
852
+ @log("Application started");
853
+ printl(@version);
854
+ ''')
855
+ ```
625
856
 
626
857
  # Changelog
627
858
 
859
+ ## v3.4.20
860
+ - **Documentation:**
861
+ - Added complete CSSL language documentation
862
+ - Live object sharing with `$name` syntax
863
+ - Data types, control flow, functions, injection system
864
+ - String methods, modules, and inline payloads
865
+
866
+ ## v3.4.19
867
+ - **Critical Bug Fixes:**
868
+ - Fixed generator raw string literal in parser.cpp (regex pattern with `)"` prematurely terminated)
869
+ - Fixed shared object property writes inside loops not persisting to Python
870
+ - Added member_access handling in flow operations for shared objects
871
+
872
+ ## v3.4.18
873
+ - **Bug Fix:**
874
+ - Attempted fix for shared object loop writes (partially fixed)
875
+
876
+ ## v3.4.17
877
+ - **New Feature: Live Object Sharing**
878
+ - `cssl.share(instance, name)` - Share Python objects with CSSL
879
+ - `$name` syntax for accessing shared objects
880
+ - Live bidirectional updates - changes in CSSL reflect in Python
881
+ - `delete("name")` builtin for removing shared objects
882
+ - Shared object metadata stored in `%APPDATA%/IncludeCPP/shared_objects/`
883
+
884
+ ## v3.4.16
885
+ - **CSSL Bug Fixes:**
886
+ - Fixed `startsWith()` and `endsWith()` parser errors
887
+
888
+ ## v3.4.15
889
+ - **CSSL Enhancements:**
890
+ - Added `elif` keyword support
891
+ - Added `range(start, end, step)` with step parameter
892
+ - Added `begin()` and `end()` methods to all collection types
893
+ - Added `cssl.code(name, code)` for inline payload registration
894
+
628
895
  ## v3.4.2
629
896
  - **New Feature: `exec` Command**
630
897
  - Interactive REPL for quick code testing without creating files
@@ -806,4 +1073,4 @@ Use at your own discretion. Report issues at: https://github.com/hatte/IncludeCP
806
1073
 
807
1074
  ---
808
1075
 
809
- MIT License | v3.4.2 | [GitHub](https://github.com/liliassg/IncludeCPP)
1076
+ MIT License | v3.4.20 | [GitHub](https://github.com/liliassg/IncludeCPP)
@@ -1,9 +1,9 @@
1
- includecpp/__init__.py,sha256=ADg4AjowwcXWGRAZLfuz0f494MvuL2vD7Ry4-LtbIBg,1673
2
- includecpp/__init__.pyi,sha256=SBHwNvqWSUj0c_oS0uVGoOv25uYUOYtORFMxKiN0pkY,3762
1
+ includecpp/__init__.py,sha256=Lg4ApbFSBpQVYm5SgU_irWBxdxpWkOJOmWYy9xG_wiQ,1672
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
5
5
  includecpp/cli/__init__.py,sha256=Yda-4a5QJb_tKu35YQNfc5lu-LewTsM5abqNNkzS47M,113
6
- includecpp/cli/commands.py,sha256=7ozSW7IyUaCoSY1tC0-ieV1TYNP37g7kSoG16XmOkZY,316898
6
+ includecpp/cli/commands.py,sha256=RsG1ixzxSnnHHb1a42x_4hBapV1i360AIK9swQVZBRQ,324721
7
7
  includecpp/cli/config_parser.py,sha256=KveeYUg2TA9sC5hKVzYYfgdNm2WfLG5y7_yxgBWn9yM,4886
8
8
  includecpp/core/__init__.py,sha256=L1bT6oikTjdto-6Px7DpjePtM07ymo3Bnov1saZzsGg,390
9
9
  includecpp/core/ai_integration.py,sha256=PW6yFDqdXjfchpfKTKg59AOLhLry9kqJEGf_65BztrY,87603
@@ -11,7 +11,7 @@ includecpp/core/build_manager.py,sha256=uLuYsuiC6OsOGaU5wAJfl4M3IbdnIDgogfMd8VsV
11
11
  includecpp/core/cpp_api.py,sha256=8y_B1L18rhSBZln654xPPzqO2PdvAlLpJrfEjzl7Wnc,14039
12
12
  includecpp/core/cpp_api.pyi,sha256=IEiaKqaPItnn6rjL7aK32D3o9FYmRYCgCZbqiQNUwdc,3496
13
13
  includecpp/core/cppy_converter.py,sha256=b7yqu-aoa0wShNY0GvQT67TnNhYya4GyYmG7oDdqDV4,156686
14
- includecpp/core/cssl_bridge.py,sha256=HpnMbX4lnGCuQq8ZjnvLSfqd-wrobMF5szhQM4T2RGI,12635
14
+ includecpp/core/cssl_bridge.py,sha256=ZrFXkJmu0ikZu0CeNuxjKyaarzpb1O6Ph3ynf8ZomTE,24396
15
15
  includecpp/core/cssl_bridge.pyi,sha256=Q4zjc2Kf2wPJPnfgHS-koPEon3Kty6o3mCvp9E5Q8tE,7635
16
16
  includecpp/core/error_catalog.py,sha256=VS3N-P0yEbiHimsDPtcaYfrUb7mXQ-7pqw18PtSngaU,33869
17
17
  includecpp/core/error_formatter.py,sha256=7-MzRIT8cM4uODxy0IZ9pu7pqR4Pq2I8Si0QQZHjmVc,39239
@@ -19,23 +19,29 @@ includecpp/core/exceptions.py,sha256=szeF4qdzi_q8hBBZi7mJxkliyQ0crplkLYe0ymlBGtk
19
19
  includecpp/core/path_discovery.py,sha256=jI0oSq6Hsd4LKXmU4dOiGSrXcEO_KWMXfQ5_ylBmXvU,2561
20
20
  includecpp/core/project_ui.py,sha256=la2EQZKmUkJGuJxnbs09hH1ZhBh9bfndo6okzZsk2dQ,141134
21
21
  includecpp/core/settings_ui.py,sha256=B2SlwgdplF2KiBk5UYf2l8Jjifjd0F-FmBP0DPsVCEQ,11798
22
- includecpp/core/cssl/__init__.py,sha256=Z63V6GjWMyd61WpdoAd-hA_ZB3kgIw2RvA-RR35WBEc,1719
23
- includecpp/core/cssl/cssl_builtins.py,sha256=PDz4FoWqNdGjBTBLKJ2fc8SqFKpprSey_9gZxV19tIE,61896
22
+ includecpp/core/cssl/CSSL_DOCUMENTATION.md,sha256=ibtovYOCM4pJqOOGPGJyWL40N3D0Vm5RgQzzh4mJGr8,26198
23
+ includecpp/core/cssl/__init__.py,sha256=TYRlyheTw5OYkkmUxJYpAjyyQShu6NF4igYZYE76eR0,1811
24
+ includecpp/core/cssl/cssl_builtins.py,sha256=WJtSWPsNNOSYtXBHK0h4ImXLrqId8ElfykQ2pBbhD3c,71368
24
25
  includecpp/core/cssl/cssl_events.py,sha256=nupIcXW_Vjdud7zCU6hdwkQRQ0MujlPM7Tk2u7eDAiY,21013
25
26
  includecpp/core/cssl/cssl_modules.py,sha256=cUg0-zdymMnWWTsA_BUrW5dx4R04dHpKcUhm-Wfiwwo,103006
26
- includecpp/core/cssl/cssl_parser.py,sha256=B52QW-Cc9GBmoJGlqNlmEBq1-3cHcztVbUWNR4KuTH4,79259
27
- includecpp/core/cssl/cssl_runtime.py,sha256=zvhWTGIkjTxKuQBjouGO6T7miyfSL1vGCXa3RQ7v60c,66626
27
+ includecpp/core/cssl/cssl_parser.py,sha256=TxkqYHSGoY8ddHupD7qfaBgwKTCofhpmApzN-rWFCnY,91644
28
+ includecpp/core/cssl/cssl_runtime.py,sha256=g_R5BPWlqYgkk8wIEjawKr-_W7S_wdXAtkzrgJ-7yxs,97317
28
29
  includecpp/core/cssl/cssl_syntax.py,sha256=vgI-dgj6gs9cOHwNRff6JbwZZYW_fYutnwCkznlgZiE,17006
29
- includecpp/core/cssl/cssl_types.py,sha256=-4kevtcUSqjCX9v6TzA_eHW3ZqaeKjEAIc92dGIAodc,17765
30
+ includecpp/core/cssl/cssl_types.py,sha256=JaBhVFcByaC-Thdkd0J9IMkUzLkxriBWx1XfwPr6knM,30561
30
31
  includecpp/generator/__init__.py,sha256=Rsy41bwimaEloD3gDRR_znPfIJzIsCFuWZgCTJBLJlc,62
31
- includecpp/generator/parser.cpp,sha256=CxVpsBDb22yDaVqp0ljh7dFKBTGlUj65apUGtPRMu0s,76829
32
+ includecpp/generator/parser.cpp,sha256=hbhHdtFH65rzp6prnARN9pNFF_ssr0NseVVcxq0fJh4,76833
32
33
  includecpp/generator/parser.h,sha256=EDm0b-pEesIIIQQ2PvH5h2qwlqJU9BH8SiMV7MWbsTo,11073
33
34
  includecpp/generator/type_resolver.cpp,sha256=MmFK_4HXd1wqxALDiDyXVuU397SXoQL_o5zb_8N8Hzs,12346
34
35
  includecpp/generator/type_resolver.h,sha256=ZsaxQqcCcKJJApYn7KOp2dLlQ1VFVG_oZDjaK5LhBSg,2590
35
36
  includecpp/templates/cpp.proj.template,sha256=Iy-L8I4Cl3tIgBMx1Qp5h6gURvkqOAqyodVHuDJ0Luw,359
36
- includecpp-3.4.10.dist-info/licenses/LICENSE,sha256=fWCsGGsiWZir0UzDd20Hh-3wtRyk1zqUntvtVuAWhvc,1093
37
- includecpp-3.4.10.dist-info/METADATA,sha256=Pu0j0edS2IRiuGTQA6nIAhYDgBsbq3oddp6TMnDdn1E,26655
38
- includecpp-3.4.10.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
39
- includecpp-3.4.10.dist-info/entry_points.txt,sha256=6A5Mif9gi0139Bf03W5plAb3wnAgbNaEVe1HJoGE-2o,59
40
- includecpp-3.4.10.dist-info/top_level.txt,sha256=RFUaR1KG-M6mCYwP6w4ydP5Cgc8yNbP78jxGAvyjMa8,11
41
- includecpp-3.4.10.dist-info/RECORD,,
37
+ includecpp/vscode/__init__.py,sha256=yLKw-_7MTX1Rx3jLk5JjharJQfFXbwtZVE7YqHpM7yg,39
38
+ includecpp/vscode/cssl/__init__.py,sha256=rQJAx5X05v-mAwqX1Qb-rbZO219iR73MziFNRUCNUIo,31
39
+ includecpp/vscode/cssl/language-configuration.json,sha256=vBZSVBpV0UFlTO4d0aQrhTpR4lHje0Tb2n889k9W_Uc,986
40
+ includecpp/vscode/cssl/package.json,sha256=t_xEMMew3ohtxv9riyPdGo_T6TMJi-REJ-GDS_GYbCk,872
41
+ includecpp/vscode/cssl/syntaxes/cssl.tmLanguage.json,sha256=lvg2EHN8If1Hw0RY_EqatLupclQmhq3oZlnBA0Zi-54,8023
42
+ includecpp-3.5.0.dist-info/licenses/LICENSE,sha256=fWCsGGsiWZir0UzDd20Hh-3wtRyk1zqUntvtVuAWhvc,1093
43
+ includecpp-3.5.0.dist-info/METADATA,sha256=5rCFLg7vB9EsiDxQdmIJaaTHm2T1rwOP_hZn2hNwyfI,32122
44
+ includecpp-3.5.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
45
+ includecpp-3.5.0.dist-info/entry_points.txt,sha256=6A5Mif9gi0139Bf03W5plAb3wnAgbNaEVe1HJoGE-2o,59
46
+ includecpp-3.5.0.dist-info/top_level.txt,sha256=RFUaR1KG-M6mCYwP6w4ydP5Cgc8yNbP78jxGAvyjMa8,11
47
+ includecpp-3.5.0.dist-info/RECORD,,