IncludeCPP 3.7.1__py3-none-any.whl → 3.7.9__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.
@@ -6,14 +6,12 @@
6
6
  "brackets": [
7
7
  ["{", "}"],
8
8
  ["[", "]"],
9
- ["(", ")"],
10
- ["<", ">"]
9
+ ["(", ")"]
11
10
  ],
12
11
  "autoClosingPairs": [
13
12
  { "open": "{", "close": "}" },
14
13
  { "open": "[", "close": "]" },
15
14
  { "open": "(", "close": ")" },
16
- { "open": "<", "close": ">" },
17
15
  { "open": "\"", "close": "\"", "notIn": ["string"] },
18
16
  { "open": "'", "close": "'", "notIn": ["string", "comment"] }
19
17
  ],
@@ -21,7 +19,6 @@
21
19
  ["{", "}"],
22
20
  ["[", "]"],
23
21
  ["(", ")"],
24
- ["<", ">"],
25
22
  ["\"", "\""],
26
23
  ["'", "'"]
27
24
  ],
@@ -3,15 +3,18 @@
3
3
  "name": "CSSL",
4
4
  "scopeName": "source.cssl",
5
5
  "patterns": [
6
+ { "include": "#super-functions" },
6
7
  { "include": "#comments" },
7
8
  { "include": "#strings" },
8
9
  { "include": "#numbers" },
9
10
  { "include": "#class-definition" },
11
+ { "include": "#sql-types" },
10
12
  { "include": "#keywords" },
11
13
  { "include": "#types" },
12
14
  { "include": "#function-modifiers" },
13
15
  { "include": "#injection-operators" },
14
16
  { "include": "#namespace-functions" },
17
+ { "include": "#iterator-methods" },
15
18
  { "include": "#filter-helpers" },
16
19
  { "include": "#this-access" },
17
20
  { "include": "#captured-references" },
@@ -19,12 +22,26 @@
19
22
  { "include": "#shared-references" },
20
23
  { "include": "#instance-references" },
21
24
  { "include": "#module-references" },
25
+ { "include": "#reference-operator" },
26
+ { "include": "#method-calls" },
22
27
  { "include": "#function-calls" },
23
28
  { "include": "#builtins" },
24
29
  { "include": "#operators" },
25
30
  { "include": "#constants" }
26
31
  ],
27
32
  "repository": {
33
+ "super-functions": {
34
+ "patterns": [
35
+ {
36
+ "name": "markup.bold.super.builtin.cssl",
37
+ "match": "#\\$(run|exec|printl|init)\\b"
38
+ },
39
+ {
40
+ "name": "markup.bold.super.call.cssl",
41
+ "match": "#\\$[a-zA-Z_][a-zA-Z0-9_]*"
42
+ }
43
+ ]
44
+ },
28
45
  "comments": {
29
46
  "patterns": [
30
47
  {
@@ -49,6 +66,10 @@
49
66
  "name": "constant.character.escape.cssl",
50
67
  "match": "\\\\."
51
68
  },
69
+ {
70
+ "name": "variable.other.interpolated.fstring.cssl",
71
+ "match": "\\{[a-zA-Z_][a-zA-Z0-9_]*\\}"
72
+ },
52
73
  {
53
74
  "name": "variable.other.interpolated.cssl",
54
75
  "match": "<[a-zA-Z_][a-zA-Z0-9_]*>"
@@ -90,22 +111,64 @@
90
111
  "name": "meta.class.cssl",
91
112
  "begin": "\\b(class)\\s+([a-zA-Z_][a-zA-Z0-9_]*)\\s*\\{",
92
113
  "beginCaptures": {
93
- "1": { "name": "keyword.other.class.cssl" },
114
+ "1": { "name": "storage.type.class.cssl" },
94
115
  "2": { "name": "entity.name.class.cssl" }
95
116
  },
96
117
  "end": "\\}",
97
118
  "patterns": [
98
119
  { "include": "#comments" },
99
- { "include": "#function-definition" },
120
+ { "include": "#constructor-definition" },
121
+ { "include": "#class-method-definition" },
122
+ { "include": "#class-member-declaration" },
100
123
  { "include": "#types" },
101
124
  { "include": "#this-access" },
102
125
  { "include": "#strings" },
103
126
  { "include": "#numbers" },
127
+ { "include": "#keywords" },
128
+ { "include": "#function-calls" },
129
+ { "include": "#builtins" },
104
130
  { "include": "#operators" }
105
131
  ]
106
132
  }
107
133
  ]
108
134
  },
135
+ "constructor-definition": {
136
+ "patterns": [
137
+ {
138
+ "comment": "Constructor: ClassName { ... } or void ClassName(...)",
139
+ "name": "meta.constructor.cssl",
140
+ "match": "\\b(void\\s+)?([A-Z][a-zA-Z0-9_]*)\\s*(?=\\{|\\()",
141
+ "captures": {
142
+ "1": { "name": "storage.type.cssl" },
143
+ "2": { "name": "entity.name.function.cssl" }
144
+ }
145
+ }
146
+ ]
147
+ },
148
+ "class-method-definition": {
149
+ "patterns": [
150
+ {
151
+ "name": "meta.method.cssl",
152
+ "match": "\\b(void|int|string|float|bool|dynamic|define|shuffled)\\s+([a-zA-Z_][a-zA-Z0-9_]*)\\s*\\(",
153
+ "captures": {
154
+ "1": { "name": "storage.type.cssl" },
155
+ "2": { "name": "entity.name.function.cssl" }
156
+ }
157
+ }
158
+ ]
159
+ },
160
+ "class-member-declaration": {
161
+ "patterns": [
162
+ {
163
+ "name": "meta.member.cssl",
164
+ "match": "\\b(int|string|float|bool|dynamic|auto)\\s+([a-zA-Z_][a-zA-Z0-9_]*)\\s*;",
165
+ "captures": {
166
+ "1": { "name": "storage.type.cssl" },
167
+ "2": { "name": "variable.other.member.cssl" }
168
+ }
169
+ }
170
+ ]
171
+ },
109
172
  "function-definition": {
110
173
  "patterns": [
111
174
  {
@@ -118,6 +181,18 @@
118
181
  }
119
182
  ]
120
183
  },
184
+ "sql-types": {
185
+ "patterns": [
186
+ {
187
+ "name": "support.type.sql.table.cssl",
188
+ "match": "\\bsql::table::(space|Section|limited|protected)\\b"
189
+ },
190
+ {
191
+ "name": "support.type.sql.cssl",
192
+ "match": "\\bsql::(table|data|data__list|sync|db)\\b"
193
+ }
194
+ ]
195
+ },
121
196
  "keywords": {
122
197
  "patterns": [
123
198
  {
@@ -125,12 +200,24 @@
125
200
  "match": "\\b(if|else|elif|while|for|foreach|in|range|switch|case|default|break|continue|return|try|catch|finally|throw)\\b"
126
201
  },
127
202
  {
128
- "name": "keyword.other.class.cssl",
129
- "match": "\\b(class|new|this)\\b"
203
+ "name": "storage.type.class.cssl",
204
+ "match": "\\b(class|struct|structure|enum|interface)\\b"
205
+ },
206
+ {
207
+ "name": "keyword.operator.new.cssl",
208
+ "match": "\\bnew\\b"
209
+ },
210
+ {
211
+ "name": "variable.language.this.cssl",
212
+ "match": "\\bthis\\b"
213
+ },
214
+ {
215
+ "name": "storage.type.function.cssl",
216
+ "match": "\\b(define|void|shuffled)\\b"
130
217
  },
131
218
  {
132
219
  "name": "keyword.other.cssl",
133
- "match": "\\b(service-init|service-run|service-include|struct|structure|define|main|package|package-includes|exec|as|global|include|get|payload)\\b"
220
+ "match": "\\b(service-init|service-run|service-include|main|package|package-includes|exec|as|global|include|get|payload|convert)\\b"
134
221
  },
135
222
  {
136
223
  "name": "keyword.operator.logical.cssl",
@@ -146,18 +233,26 @@
146
233
  "patterns": [
147
234
  {
148
235
  "name": "storage.type.primitive.cssl",
149
- "match": "\\b(int|string|float|bool|void|json|dynamic)\\b"
236
+ "match": "\\b(int|string|float|bool|void|json|dynamic|auto|long|double)\\b"
237
+ },
238
+ {
239
+ "comment": "Generic containers with type parameter: vector<int>, map<string, int>",
240
+ "name": "meta.generic.cssl",
241
+ "match": "(\\b(?:array|vector|stack|list|dictionary|dict|map|datastruct|dataspace|shuffled|iterator|combo|openquote|tuple|set|queue))(<)([^>]+)(>)",
242
+ "captures": {
243
+ "1": { "name": "storage.type.container.cssl" },
244
+ "2": { "name": "punctuation.definition.typeparameters.begin.cssl" },
245
+ "3": { "name": "storage.type.parameter.cssl" },
246
+ "4": { "name": "punctuation.definition.typeparameters.end.cssl" }
247
+ }
150
248
  },
151
249
  {
152
250
  "name": "storage.type.container.cssl",
153
- "match": "\\b(array|vector|stack|list|dictionary|dict|map|datastruct|dataspace|shuffled|iterator|combo|openquote|instance)\\b"
251
+ "match": "\\b(array|vector|stack|list|dictionary|dict|map|datastruct|dataspace|shuffled|iterator|combo|openquote|instance|tuple|set|queue)\\b"
154
252
  },
155
253
  {
156
- "name": "storage.type.generic.cssl",
157
- "match": "\\b(array|vector|stack|list|dictionary|dict|map|datastruct|dataspace|shuffled|iterator|combo|openquote|instance)\\s*<",
158
- "captures": {
159
- "1": { "name": "storage.type.container.cssl" }
160
- }
254
+ "name": "storage.type.combo-open.cssl",
255
+ "match": "\\bcombo\\s*<\\s*open\\s*&"
161
256
  }
162
257
  ]
163
258
  },
@@ -165,19 +260,31 @@
165
260
  "patterns": [
166
261
  {
167
262
  "name": "storage.modifier.cssl",
168
- "match": "\\b(undefined|open|closed|private|virtual|meta|super|sqlbased)\\b"
263
+ "match": "\\b(undefined|open|closed|private|virtual|meta|super|sqlbased|protected|limited)\\b"
169
264
  }
170
265
  ]
171
266
  },
172
267
  "injection-operators": {
173
268
  "patterns": [
174
269
  {
175
- "name": "keyword.operator.injection.infuse.cssl",
176
- "match": "(\\+<<==|<<==|-<<==|==>>\\+|==>>|-==>>)"
270
+ "comment": "Infuse operators <<== (REPLACE) - orange/gold color",
271
+ "name": "markup.inserted.infuse.cssl",
272
+ "match": "(\\+<<==|<<==|-<<==)"
273
+ },
274
+ {
275
+ "comment": "Infuse out operators ==>> - orange/gold color",
276
+ "name": "markup.inserted.infuse.out.cssl",
277
+ "match": "(==>>\\+|==>>|-==>>)"
177
278
  },
178
279
  {
179
- "name": "keyword.operator.injection.brute.cssl",
180
- "match": "(\\+<==|<==|-<==|==>\\+|==>|-==>)"
280
+ "comment": "Brute injection <== (ADD) - cyan/blue color",
281
+ "name": "support.constant.brute.cssl",
282
+ "match": "(\\+<==|<==|-<==)"
283
+ },
284
+ {
285
+ "comment": "Brute injection out ==> - cyan/blue color",
286
+ "name": "support.constant.brute.out.cssl",
287
+ "match": "(==>\\+|==>|-==>)"
181
288
  },
182
289
  {
183
290
  "name": "keyword.operator.flow.cssl",
@@ -189,7 +296,7 @@
189
296
  "patterns": [
190
297
  {
191
298
  "name": "support.function.namespace.json.cssl",
192
- "match": "\\bjson::(read|write|parse|stringify|pretty|get|set|has|keys|values|merge)\\b"
299
+ "match": "\\bjson::(read|write|parse|stringify|pretty|get|set|has|keys|values|merge|key|value)\\b"
193
300
  },
194
301
  {
195
302
  "name": "support.function.namespace.instance.cssl",
@@ -198,6 +305,26 @@
198
305
  {
199
306
  "name": "support.function.namespace.string.cssl",
200
307
  "match": "\\bstring::(where|contains|not|startsWith|endsWith|length|lenght|cut|cutAfter|value)\\b"
308
+ },
309
+ {
310
+ "name": "support.function.namespace.sql.cssl",
311
+ "match": "\\bsql::(connect|load|save|update|sync|Structured)\\b"
312
+ },
313
+ {
314
+ "name": "support.function.namespace.combo.cssl",
315
+ "match": "\\bcombo::(filterdb|blocked|like)\\b"
316
+ }
317
+ ]
318
+ },
319
+ "iterator-methods": {
320
+ "patterns": [
321
+ {
322
+ "name": "support.function.iterator.cssl",
323
+ "match": "::iterator::(set|move|insert|pop|task|dtask|read|write)\\b"
324
+ },
325
+ {
326
+ "name": "support.function.like.cssl",
327
+ "match": "::like\\s*="
201
328
  }
202
329
  ]
203
330
  },
@@ -205,7 +332,7 @@
205
332
  "patterns": [
206
333
  {
207
334
  "name": "support.function.filter.cssl",
208
- "match": "\\b(string|integer|json|array|vector|combo|dynamic|sql)::(where|contains|not|startsWith|endsWith|length|lenght|key|value|index|filterdb|blocked|data)\\b"
335
+ "match": "\\[(string|integer|json|array|vector|combo|dynamic|sql)::(where|contains|not|startsWith|endsWith|length|lenght|key|value|index|filterdb|blocked|data)\\s*=?"
209
336
  }
210
337
  ]
211
338
  },
@@ -256,8 +383,26 @@
256
383
  "instance-references": {
257
384
  "patterns": [
258
385
  {
259
- "name": "storage.type.instance.cssl",
260
- "match": "\\binstance<\"[^\"]+\">"
386
+ "comment": "instance<\"name\"> - shared instance reference with string",
387
+ "name": "meta.instance.cssl",
388
+ "match": "(\\binstance)(<)(\"[^\"]+\")(>)",
389
+ "captures": {
390
+ "1": { "name": "storage.type.instance.cssl" },
391
+ "2": { "name": "punctuation.definition.typeparameters.begin.cssl" },
392
+ "3": { "name": "string.quoted.double.cssl" },
393
+ "4": { "name": "punctuation.definition.typeparameters.end.cssl" }
394
+ }
395
+ },
396
+ {
397
+ "comment": "instance<Type> - shared instance reference with type",
398
+ "name": "meta.instance.cssl",
399
+ "match": "(\\binstance)(<)([a-zA-Z_][a-zA-Z0-9_]*)(>)",
400
+ "captures": {
401
+ "1": { "name": "storage.type.instance.cssl" },
402
+ "2": { "name": "punctuation.definition.typeparameters.begin.cssl" },
403
+ "3": { "name": "entity.name.type.cssl" },
404
+ "4": { "name": "punctuation.definition.typeparameters.end.cssl" }
405
+ }
261
406
  }
262
407
  ]
263
408
  },
@@ -269,6 +414,22 @@
269
414
  }
270
415
  ]
271
416
  },
417
+ "reference-operator": {
418
+ "patterns": [
419
+ {
420
+ "name": "keyword.operator.reference.cssl",
421
+ "match": "&(?=[a-zA-Z_@])"
422
+ }
423
+ ]
424
+ },
425
+ "method-calls": {
426
+ "patterns": [
427
+ {
428
+ "name": "support.function.method.cssl",
429
+ "match": "\\.(push_back|append|insert|fill|at|is|read|write|content|save|where|load|update|oqt|connect|Structured|create|Queue|sync|pop|end|get|set|has|keys|values|convert)\\b"
430
+ }
431
+ ]
432
+ },
272
433
  "function-calls": {
273
434
  "patterns": [
274
435
  {
@@ -293,7 +454,7 @@
293
454
  },
294
455
  {
295
456
  "name": "support.function.builtin.special.cssl",
296
- "match": "\\b(OpenFind|share|shared)\\b"
457
+ "match": "\\b(OpenFind|share|shared|include)\\b"
297
458
  },
298
459
  {
299
460
  "name": "support.variable.builtin.parameter.cssl",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: IncludeCPP
3
- Version: 3.7.1
3
+ Version: 3.7.9
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,9 +1,9 @@
1
- includecpp/__init__.py,sha256=SV4ypMkGhJOYELGfsU013Q8nWsO-LKnAZDcdpy3mkok,1672
1
+ includecpp/__init__.py,sha256=4q1HJiChcnPVi-VcBI9SljAvaXRHAWmLze8kViZTCik,1672
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
5
5
  includecpp/cli/__init__.py,sha256=Yda-4a5QJb_tKu35YQNfc5lu-LewTsM5abqNNkzS47M,113
6
- includecpp/cli/commands.py,sha256=Mz1eFYSXWzi4C3lOnihscpQ0GXnkOjPoP9bIa0CnoW4,339806
6
+ includecpp/cli/commands.py,sha256=a8yncdRZzHOM2LbI8Z54ZwSYimn-Grg6GqBqhFS0OdE,347101
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=xF2AinLlhxwcG9ZM2F0AjLc1dnJOSnRBja2-wEm0vog,27474
14
+ includecpp/core/cssl_bridge.py,sha256=4HvxOn8yM5FGPeb5scfZS8wyRazf5kN7URbHU-iGd0A,41278
15
15
  includecpp/core/cssl_bridge.pyi,sha256=tQxb3lneufgVmXSAqDUwjoluUNo8Wa5QIOnaL8ai6q0,12055
16
16
  includecpp/core/error_catalog.py,sha256=VS3N-P0yEbiHimsDPtcaYfrUb7mXQ-7pqw18PtSngaU,33869
17
17
  includecpp/core/error_formatter.py,sha256=7-MzRIT8cM4uODxy0IZ9pu7pqR4Pq2I8Si0QQZHjmVc,39239
@@ -19,14 +19,14 @@ 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/CSSL_DOCUMENTATION.md,sha256=5zNNIBOjFh_ZpbKIgKw2pHicsjAyqde6Tq2faa-1I5I,40035
22
+ includecpp/core/cssl/CSSL_DOCUMENTATION.md,sha256=47sUPO-FMq_8_CrJBZFoFBgSO3gSi5zoB1Xp7oeifho,40773
23
23
  includecpp/core/cssl/__init__.py,sha256=TYRlyheTw5OYkkmUxJYpAjyyQShu6NF4igYZYE76eR0,1811
24
24
  includecpp/core/cssl/cssl_builtins.py,sha256=MJtWF7PeWkasxxkpN2zaCjeIJoQw5BPy-jQNYberMQo,85010
25
25
  includecpp/core/cssl/cssl_builtins.pyi,sha256=Zc__PCO9FDaTPPG92zgK6_QoeMohbs0xlv6YGPubEdQ,31010
26
26
  includecpp/core/cssl/cssl_events.py,sha256=nupIcXW_Vjdud7zCU6hdwkQRQ0MujlPM7Tk2u7eDAiY,21013
27
27
  includecpp/core/cssl/cssl_modules.py,sha256=cUg0-zdymMnWWTsA_BUrW5dx4R04dHpKcUhm-Wfiwwo,103006
28
- includecpp/core/cssl/cssl_parser.py,sha256=BbB_kiB__e6PMpNuj9esxGK-MYtjHfoGIhluxqXHvEo,106146
29
- includecpp/core/cssl/cssl_runtime.py,sha256=YSUUaHlpkbKB3ZFuqbbWPEb4riwDuPus8DaE45bw07E,124648
28
+ includecpp/core/cssl/cssl_parser.py,sha256=pOWe6kle4EvXLai3DNHfLcYGeb568EQ8upxscVVR5m0,113161
29
+ includecpp/core/cssl/cssl_runtime.py,sha256=3b14wEWvLpFDVA0r0pyNqy02l7s9FTdXQd61BdpPlZg,131780
30
30
  includecpp/core/cssl/cssl_syntax.py,sha256=vgI-dgj6gs9cOHwNRff6JbwZZYW_fYutnwCkznlgZiE,17006
31
31
  includecpp/core/cssl/cssl_types.py,sha256=XftmkvjxL-mKMz6HiTtnruG6P7haM21gFm7P9Caovug,48213
32
32
  includecpp/generator/__init__.py,sha256=Rsy41bwimaEloD3gDRR_znPfIJzIsCFuWZgCTJBLJlc,62
@@ -37,13 +37,13 @@ includecpp/generator/type_resolver.h,sha256=ZsaxQqcCcKJJApYn7KOp2dLlQ1VFVG_oZDja
37
37
  includecpp/templates/cpp.proj.template,sha256=Iy-L8I4Cl3tIgBMx1Qp5h6gURvkqOAqyodVHuDJ0Luw,359
38
38
  includecpp/vscode/__init__.py,sha256=yLKw-_7MTX1Rx3jLk5JjharJQfFXbwtZVE7YqHpM7yg,39
39
39
  includecpp/vscode/cssl/__init__.py,sha256=rQJAx5X05v-mAwqX1Qb-rbZO219iR73MziFNRUCNUIo,31
40
- includecpp/vscode/cssl/language-configuration.json,sha256=vBZSVBpV0UFlTO4d0aQrhTpR4lHje0Tb2n889k9W_Uc,986
40
+ includecpp/vscode/cssl/language-configuration.json,sha256=61Q00cKI9may5L8YpxMmvfo6PAc-abdJqApfR85DWuw,904
41
41
  includecpp/vscode/cssl/package.json,sha256=MWWIRLUnGvadWzEyfWdykUZHTsrG18sqpn5US5sXqac,1435
42
42
  includecpp/vscode/cssl/snippets/cssl.snippets.json,sha256=l4SCEPR3CsPxA8HIVLKYY__I979TfKzYWtH1KYIsboo,33062
43
- includecpp/vscode/cssl/syntaxes/cssl.tmLanguage.json,sha256=FODjb4v7K9qScxmiUP4HLgTNk6nDHF_HMqUA2HfyzLM,12747
44
- includecpp-3.7.1.dist-info/licenses/LICENSE,sha256=fWCsGGsiWZir0UzDd20Hh-3wtRyk1zqUntvtVuAWhvc,1093
45
- includecpp-3.7.1.dist-info/METADATA,sha256=oV1pOQbNoKRPC615RFC2HzadKR95OwQWqA74KBaEiBI,32122
46
- includecpp-3.7.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
47
- includecpp-3.7.1.dist-info/entry_points.txt,sha256=6A5Mif9gi0139Bf03W5plAb3wnAgbNaEVe1HJoGE-2o,59
48
- includecpp-3.7.1.dist-info/top_level.txt,sha256=RFUaR1KG-M6mCYwP6w4ydP5Cgc8yNbP78jxGAvyjMa8,11
49
- includecpp-3.7.1.dist-info/RECORD,,
43
+ includecpp/vscode/cssl/syntaxes/cssl.tmLanguage.json,sha256=WTHh_tpqHssRlhmbxfxSvDsgwvW28cYJ1r45lnOvE7U,19974
44
+ includecpp-3.7.9.dist-info/licenses/LICENSE,sha256=fWCsGGsiWZir0UzDd20Hh-3wtRyk1zqUntvtVuAWhvc,1093
45
+ includecpp-3.7.9.dist-info/METADATA,sha256=8qpKrrmhyP6P_SE6fuZlVCoNmJFPhPVsYYxtJkmr_sU,32122
46
+ includecpp-3.7.9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
47
+ includecpp-3.7.9.dist-info/entry_points.txt,sha256=6A5Mif9gi0139Bf03W5plAb3wnAgbNaEVe1HJoGE-2o,59
48
+ includecpp-3.7.9.dist-info/top_level.txt,sha256=RFUaR1KG-M6mCYwP6w4ydP5Cgc8yNbP78jxGAvyjMa8,11
49
+ includecpp-3.7.9.dist-info/RECORD,,