IncludeCPP 4.0.1__py3-none-any.whl → 4.0.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.
- includecpp/__init__.py +1 -1
- includecpp/core/cssl/cssl_runtime.py +187 -14
- includecpp/core/cssl/cssl_types.py +143 -1
- includecpp/core/cssl_bridge.py +194 -8
- includecpp/core/cssl_bridge.pyi +717 -186
- includecpp/vscode/cssl/package.json +43 -1
- includecpp/vscode/cssl/syntaxes/cssl.tmLanguage.json +140 -17
- {includecpp-4.0.1.dist-info → includecpp-4.0.3.dist-info}/METADATA +1 -1
- {includecpp-4.0.1.dist-info → includecpp-4.0.3.dist-info}/RECORD +13 -13
- {includecpp-4.0.1.dist-info → includecpp-4.0.3.dist-info}/WHEEL +0 -0
- {includecpp-4.0.1.dist-info → includecpp-4.0.3.dist-info}/entry_points.txt +0 -0
- {includecpp-4.0.1.dist-info → includecpp-4.0.3.dist-info}/licenses/LICENSE +0 -0
- {includecpp-4.0.1.dist-info → includecpp-4.0.3.dist-info}/top_level.txt +0 -0
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "cssl",
|
|
3
3
|
"displayName": "CSSL Language",
|
|
4
4
|
"description": "Professional syntax highlighting, snippets, and language support for CSSL scripts (.cssl, .cssl-pl, .cssl-mod)",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.7.1",
|
|
6
6
|
"publisher": "IncludeCPP",
|
|
7
7
|
"icon": "images/cssl.png",
|
|
8
8
|
"engines": {
|
|
@@ -151,6 +151,48 @@
|
|
|
151
151
|
"description": "Show output panel when running CSSL files"
|
|
152
152
|
}
|
|
153
153
|
}
|
|
154
|
+
},
|
|
155
|
+
"configurationDefaults": {
|
|
156
|
+
"editor.tokenColorCustomizations": {
|
|
157
|
+
"textMateRules": [
|
|
158
|
+
{
|
|
159
|
+
"scope": "storage.modifier.cssl",
|
|
160
|
+
"settings": {
|
|
161
|
+
"fontStyle": "italic"
|
|
162
|
+
}
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"scope": "storage.modifier.extends.cssl",
|
|
166
|
+
"settings": {
|
|
167
|
+
"fontStyle": "italic"
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"scope": "storage.modifier.overwrites.cssl",
|
|
172
|
+
"settings": {
|
|
173
|
+
"fontStyle": "italic"
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"scope": "support.type.cssl",
|
|
178
|
+
"settings": {
|
|
179
|
+
"foreground": "#C586C0"
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"scope": "variable.other.declaration.cssl",
|
|
184
|
+
"settings": {
|
|
185
|
+
"foreground": "#9CDCFE"
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"scope": "variable.parameter.cssl",
|
|
190
|
+
"settings": {
|
|
191
|
+
"foreground": "#9CDCFE"
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
]
|
|
195
|
+
}
|
|
154
196
|
}
|
|
155
197
|
}
|
|
156
198
|
}
|
|
@@ -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,4 +1,4 @@
|
|
|
1
|
-
includecpp/__init__.py,sha256=
|
|
1
|
+
includecpp/__init__.py,sha256=kyD1GPUlAX67eTPg5FgXkPAkTbMulKjmsgpiaFykMvQ,1672
|
|
2
2
|
includecpp/__init__.pyi,sha256=uSDYlbqd2TinmrdepmE_zvN25jd3Co2cgyPzXgDpopM,7193
|
|
3
3
|
includecpp/__main__.py,sha256=d6QK0PkvUe1ENofpmHRAg3bwNbZr8PiRscfI3-WRfVg,72
|
|
4
4
|
includecpp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -11,8 +11,8 @@ 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=
|
|
15
|
-
includecpp/core/cssl_bridge.pyi,sha256=
|
|
14
|
+
includecpp/core/cssl_bridge.py,sha256=xYfIRagegO8irdWl97dfanRB1qLU80p9lQ2wxkttGQ4,49963
|
|
15
|
+
includecpp/core/cssl_bridge.pyi,sha256=nreh2gtK94I6VFrzTWcYVUHN97wcYQF0dY_-HySi7yQ,28787
|
|
16
16
|
includecpp/core/error_catalog.py,sha256=VS3N-P0yEbiHimsDPtcaYfrUb7mXQ-7pqw18PtSngaU,33869
|
|
17
17
|
includecpp/core/error_formatter.py,sha256=7-MzRIT8cM4uODxy0IZ9pu7pqR4Pq2I8Si0QQZHjmVc,39239
|
|
18
18
|
includecpp/core/exceptions.py,sha256=szeF4qdzi_q8hBBZi7mJxkliyQ0crplkLYe0ymlBGtk,2459
|
|
@@ -27,9 +27,9 @@ includecpp/core/cssl/cssl_builtins.pyi,sha256=-yr9JbxHKFv9Vc1iufChcqCQvNQLL3-Ow_
|
|
|
27
27
|
includecpp/core/cssl/cssl_events.py,sha256=nupIcXW_Vjdud7zCU6hdwkQRQ0MujlPM7Tk2u7eDAiY,21013
|
|
28
28
|
includecpp/core/cssl/cssl_modules.py,sha256=cUg0-zdymMnWWTsA_BUrW5dx4R04dHpKcUhm-Wfiwwo,103006
|
|
29
29
|
includecpp/core/cssl/cssl_parser.py,sha256=4GHFcGa6jv7sgQxP0wWqCci8eS4E8Ie2t-qfJ2Ux9BU,154072
|
|
30
|
-
includecpp/core/cssl/cssl_runtime.py,sha256=
|
|
30
|
+
includecpp/core/cssl/cssl_runtime.py,sha256=7R3lGdw-2G9_0H5jf3D8Cn_2inLHyw2771XFopMz51s,217360
|
|
31
31
|
includecpp/core/cssl/cssl_syntax.py,sha256=bgo3NFehoPTQa5dqwNd_CstkVGVCNYAXbGYUcu5BEN0,16982
|
|
32
|
-
includecpp/core/cssl/cssl_types.py,sha256=
|
|
32
|
+
includecpp/core/cssl/cssl_types.py,sha256=e3yJfM7VqaeuU92jtmvpxfwURWXGmIJlEC41baZryvw,58452
|
|
33
33
|
includecpp/generator/__init__.py,sha256=Rsy41bwimaEloD3gDRR_znPfIJzIsCFuWZgCTJBLJlc,62
|
|
34
34
|
includecpp/generator/parser.cpp,sha256=hbhHdtFH65rzp6prnARN9pNFF_ssr0NseVVcxq0fJh4,76833
|
|
35
35
|
includecpp/generator/parser.h,sha256=EDm0b-pEesIIIQQ2PvH5h2qwlqJU9BH8SiMV7MWbsTo,11073
|
|
@@ -40,14 +40,14 @@ includecpp/vscode/__init__.py,sha256=yLKw-_7MTX1Rx3jLk5JjharJQfFXbwtZVE7YqHpM7yg
|
|
|
40
40
|
includecpp/vscode/cssl/__init__.py,sha256=rQJAx5X05v-mAwqX1Qb-rbZO219iR73MziFNRUCNUIo,31
|
|
41
41
|
includecpp/vscode/cssl/extension.js,sha256=FZaKfOpzo2jXtubVCZmnhDZd4eUVHltm5VW_fgNnSkE,4327
|
|
42
42
|
includecpp/vscode/cssl/language-configuration.json,sha256=61Q00cKI9may5L8YpxMmvfo6PAc-abdJqApfR85DWuw,904
|
|
43
|
-
includecpp/vscode/cssl/package.json,sha256=
|
|
43
|
+
includecpp/vscode/cssl/package.json,sha256=u5iHl79-GfeJiQ7vPe8DP5hXlOpGP41d1A54bn4Yy6M,6391
|
|
44
44
|
includecpp/vscode/cssl/images/cssl.png,sha256=BxAGsnfS0ZzzCvqV6Zb1OAJAZpDUoXlR86MsvUGlSZw,510
|
|
45
45
|
includecpp/vscode/cssl/images/cssl_pl.png,sha256=z4WMk7g6YCTbUUbSFk343BO6yi_OmNEVYkRenWGydwM,799
|
|
46
46
|
includecpp/vscode/cssl/snippets/cssl.snippets.json,sha256=uV3nHJyQ5f7Pr3FzfbQT2VZOEY3AlGs4wrmqe884jm4,37372
|
|
47
|
-
includecpp/vscode/cssl/syntaxes/cssl.tmLanguage.json,sha256=
|
|
48
|
-
includecpp-4.0.
|
|
49
|
-
includecpp-4.0.
|
|
50
|
-
includecpp-4.0.
|
|
51
|
-
includecpp-4.0.
|
|
52
|
-
includecpp-4.0.
|
|
53
|
-
includecpp-4.0.
|
|
47
|
+
includecpp/vscode/cssl/syntaxes/cssl.tmLanguage.json,sha256=nYy7aRWREcgCu9Jbx5QmtQHfD4WRlk-HkPhqzKVtoIA,42806
|
|
48
|
+
includecpp-4.0.3.dist-info/licenses/LICENSE,sha256=fWCsGGsiWZir0UzDd20Hh-3wtRyk1zqUntvtVuAWhvc,1093
|
|
49
|
+
includecpp-4.0.3.dist-info/METADATA,sha256=HrQsoVYGdTmArZ8MsnftKkBoY7a25f9Zv3AiyFpuHn8,22542
|
|
50
|
+
includecpp-4.0.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
51
|
+
includecpp-4.0.3.dist-info/entry_points.txt,sha256=6A5Mif9gi0139Bf03W5plAb3wnAgbNaEVe1HJoGE-2o,59
|
|
52
|
+
includecpp-4.0.3.dist-info/top_level.txt,sha256=RFUaR1KG-M6mCYwP6w4ydP5Cgc8yNbP78jxGAvyjMa8,11
|
|
53
|
+
includecpp-4.0.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|