IncludeCPP 3.7.1__py3-none-any.whl → 3.7.25__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/__init__.pyi +2 -2
- includecpp/cli/commands.py +278 -75
- includecpp/core/cssl/CSSL_DOCUMENTATION.md +27 -8
- includecpp/core/cssl/__init__.py +7 -2
- includecpp/core/cssl/cssl_builtins.py +201 -9
- includecpp/core/cssl/cssl_builtins.pyi +3682 -401
- includecpp/core/cssl/cssl_parser.py +291 -40
- includecpp/core/cssl/cssl_runtime.py +629 -40
- includecpp/core/cssl/cssl_syntax.py +7 -7
- includecpp/core/cssl/cssl_types.py +75 -2
- includecpp/core/cssl_bridge.py +540 -53
- includecpp/vscode/cssl/extension.js +133 -0
- includecpp/vscode/cssl/images/cssl.png +0 -0
- includecpp/vscode/cssl/images/cssl_pl.png +0 -0
- includecpp/vscode/cssl/language-configuration.json +1 -4
- includecpp/vscode/cssl/package.json +117 -11
- includecpp/vscode/cssl/syntaxes/cssl.tmLanguage.json +213 -29
- {includecpp-3.7.1.dist-info → includecpp-3.7.25.dist-info}/METADATA +2 -2
- {includecpp-3.7.1.dist-info → includecpp-3.7.25.dist-info}/RECORD +24 -21
- {includecpp-3.7.1.dist-info → includecpp-3.7.25.dist-info}/WHEEL +0 -0
- {includecpp-3.7.1.dist-info → includecpp-3.7.25.dist-info}/entry_points.txt +0 -0
- {includecpp-3.7.1.dist-info → includecpp-3.7.25.dist-info}/licenses/LICENSE +0 -0
- {includecpp-3.7.1.dist-info → includecpp-3.7.25.dist-info}/top_level.txt +0 -0
|
@@ -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,29 @@
|
|
|
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
|
-
{ "include": "#constants" }
|
|
30
|
+
{ "include": "#constants" },
|
|
31
|
+
{ "include": "#variables" }
|
|
26
32
|
],
|
|
27
33
|
"repository": {
|
|
34
|
+
"super-functions": {
|
|
35
|
+
"patterns": [
|
|
36
|
+
{
|
|
37
|
+
"comment": "#$run, #$exec, #$printl - yellow/gold color",
|
|
38
|
+
"name": "entity.name.tag.super.cssl",
|
|
39
|
+
"match": "#\\$(run|exec|printl|init)\\b"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"comment": "#$anyFunction - yellow/gold color",
|
|
43
|
+
"name": "entity.name.tag.super.cssl",
|
|
44
|
+
"match": "#\\$[a-zA-Z_][a-zA-Z0-9_]*"
|
|
45
|
+
}
|
|
46
|
+
]
|
|
47
|
+
},
|
|
28
48
|
"comments": {
|
|
29
49
|
"patterns": [
|
|
30
50
|
{
|
|
@@ -49,6 +69,10 @@
|
|
|
49
69
|
"name": "constant.character.escape.cssl",
|
|
50
70
|
"match": "\\\\."
|
|
51
71
|
},
|
|
72
|
+
{
|
|
73
|
+
"name": "variable.other.interpolated.fstring.cssl",
|
|
74
|
+
"match": "\\{[a-zA-Z_][a-zA-Z0-9_]*\\}"
|
|
75
|
+
},
|
|
52
76
|
{
|
|
53
77
|
"name": "variable.other.interpolated.cssl",
|
|
54
78
|
"match": "<[a-zA-Z_][a-zA-Z0-9_]*>"
|
|
@@ -90,22 +114,67 @@
|
|
|
90
114
|
"name": "meta.class.cssl",
|
|
91
115
|
"begin": "\\b(class)\\s+([a-zA-Z_][a-zA-Z0-9_]*)\\s*\\{",
|
|
92
116
|
"beginCaptures": {
|
|
93
|
-
"1": { "name": "
|
|
117
|
+
"1": { "name": "storage.type.class.cssl" },
|
|
94
118
|
"2": { "name": "entity.name.class.cssl" }
|
|
95
119
|
},
|
|
96
120
|
"end": "\\}",
|
|
97
121
|
"patterns": [
|
|
98
122
|
{ "include": "#comments" },
|
|
99
|
-
{ "include": "#
|
|
123
|
+
{ "include": "#constructor-definition" },
|
|
124
|
+
{ "include": "#class-method-definition" },
|
|
125
|
+
{ "include": "#class-member-declaration" },
|
|
100
126
|
{ "include": "#types" },
|
|
101
127
|
{ "include": "#this-access" },
|
|
128
|
+
{ "include": "#captured-references" },
|
|
129
|
+
{ "include": "#global-references" },
|
|
130
|
+
{ "include": "#shared-references" },
|
|
102
131
|
{ "include": "#strings" },
|
|
103
132
|
{ "include": "#numbers" },
|
|
133
|
+
{ "include": "#keywords" },
|
|
134
|
+
{ "include": "#function-calls" },
|
|
135
|
+
{ "include": "#builtins" },
|
|
104
136
|
{ "include": "#operators" }
|
|
105
137
|
]
|
|
106
138
|
}
|
|
107
139
|
]
|
|
108
140
|
},
|
|
141
|
+
"constructor-definition": {
|
|
142
|
+
"patterns": [
|
|
143
|
+
{
|
|
144
|
+
"comment": "Constructor: ClassName { ... } or void ClassName(...)",
|
|
145
|
+
"name": "meta.constructor.cssl",
|
|
146
|
+
"match": "\\b(void\\s+)?([A-Z][a-zA-Z0-9_]*)\\s*(?=\\{|\\()",
|
|
147
|
+
"captures": {
|
|
148
|
+
"1": { "name": "storage.type.cssl" },
|
|
149
|
+
"2": { "name": "entity.name.function.cssl" }
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
]
|
|
153
|
+
},
|
|
154
|
+
"class-method-definition": {
|
|
155
|
+
"patterns": [
|
|
156
|
+
{
|
|
157
|
+
"name": "meta.method.cssl",
|
|
158
|
+
"match": "\\b(void|int|string|float|bool|dynamic|define|shuffled)\\s+([a-zA-Z_][a-zA-Z0-9_]*)\\s*\\(",
|
|
159
|
+
"captures": {
|
|
160
|
+
"1": { "name": "storage.type.cssl" },
|
|
161
|
+
"2": { "name": "entity.name.function.cssl" }
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
]
|
|
165
|
+
},
|
|
166
|
+
"class-member-declaration": {
|
|
167
|
+
"patterns": [
|
|
168
|
+
{
|
|
169
|
+
"name": "meta.member.cssl",
|
|
170
|
+
"match": "\\b(int|string|float|bool|dynamic|auto)\\s+([a-zA-Z_][a-zA-Z0-9_]*)\\s*;",
|
|
171
|
+
"captures": {
|
|
172
|
+
"1": { "name": "storage.type.cssl" },
|
|
173
|
+
"2": { "name": "variable.other.member.cssl" }
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
]
|
|
177
|
+
},
|
|
109
178
|
"function-definition": {
|
|
110
179
|
"patterns": [
|
|
111
180
|
{
|
|
@@ -118,6 +187,18 @@
|
|
|
118
187
|
}
|
|
119
188
|
]
|
|
120
189
|
},
|
|
190
|
+
"sql-types": {
|
|
191
|
+
"patterns": [
|
|
192
|
+
{
|
|
193
|
+
"name": "support.type.sql.table.cssl",
|
|
194
|
+
"match": "\\bsql::table::(space|Section|limited|protected)\\b"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"name": "support.type.sql.cssl",
|
|
198
|
+
"match": "\\bsql::(table|data|data__list|sync|db)\\b"
|
|
199
|
+
}
|
|
200
|
+
]
|
|
201
|
+
},
|
|
121
202
|
"keywords": {
|
|
122
203
|
"patterns": [
|
|
123
204
|
{
|
|
@@ -125,12 +206,24 @@
|
|
|
125
206
|
"match": "\\b(if|else|elif|while|for|foreach|in|range|switch|case|default|break|continue|return|try|catch|finally|throw)\\b"
|
|
126
207
|
},
|
|
127
208
|
{
|
|
128
|
-
"name": "
|
|
129
|
-
"match": "\\b(class|
|
|
209
|
+
"name": "storage.type.class.cssl",
|
|
210
|
+
"match": "\\b(class|struct|structure|enum|interface)\\b"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"name": "keyword.operator.new.cssl",
|
|
214
|
+
"match": "\\bnew\\b"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"name": "variable.language.this.cssl",
|
|
218
|
+
"match": "\\bthis\\b"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"name": "storage.type.function.cssl",
|
|
222
|
+
"match": "\\b(define|void|shuffled)\\b"
|
|
130
223
|
},
|
|
131
224
|
{
|
|
132
225
|
"name": "keyword.other.cssl",
|
|
133
|
-
"match": "\\b(service-init|service-run|service-include|
|
|
226
|
+
"match": "\\b(service-init|service-run|service-include|main|package|package-includes|exec|as|global|include|get|payload|convert)\\b"
|
|
134
227
|
},
|
|
135
228
|
{
|
|
136
229
|
"name": "keyword.operator.logical.cssl",
|
|
@@ -146,18 +239,26 @@
|
|
|
146
239
|
"patterns": [
|
|
147
240
|
{
|
|
148
241
|
"name": "storage.type.primitive.cssl",
|
|
149
|
-
"match": "\\b(int|string|float|bool|void|json|dynamic)\\b"
|
|
242
|
+
"match": "\\b(int|string|float|bool|void|json|dynamic|auto|long|double)\\b"
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"comment": "Generic containers with type parameter: vector<int>, map<string, int>",
|
|
246
|
+
"name": "meta.generic.cssl",
|
|
247
|
+
"match": "(\\b(?:array|vector|stack|list|dictionary|dict|map|datastruct|dataspace|shuffled|iterator|combo|openquote|tuple|set|queue))(<)([^>]+)(>)",
|
|
248
|
+
"captures": {
|
|
249
|
+
"1": { "name": "storage.type.container.cssl" },
|
|
250
|
+
"2": { "name": "punctuation.definition.typeparameters.begin.cssl" },
|
|
251
|
+
"3": { "name": "storage.type.parameter.cssl" },
|
|
252
|
+
"4": { "name": "punctuation.definition.typeparameters.end.cssl" }
|
|
253
|
+
}
|
|
150
254
|
},
|
|
151
255
|
{
|
|
152
256
|
"name": "storage.type.container.cssl",
|
|
153
|
-
"match": "\\b(array|vector|stack|list|dictionary|dict|map|datastruct|dataspace|shuffled|iterator|combo|openquote|instance)\\b"
|
|
257
|
+
"match": "\\b(array|vector|stack|list|dictionary|dict|map|datastruct|dataspace|shuffled|iterator|combo|openquote|instance|tuple|set|queue)\\b"
|
|
154
258
|
},
|
|
155
259
|
{
|
|
156
|
-
"name": "storage.type.
|
|
157
|
-
"match": "\\
|
|
158
|
-
"captures": {
|
|
159
|
-
"1": { "name": "storage.type.container.cssl" }
|
|
160
|
-
}
|
|
260
|
+
"name": "storage.type.combo-open.cssl",
|
|
261
|
+
"match": "\\bcombo\\s*<\\s*open\\s*&"
|
|
161
262
|
}
|
|
162
263
|
]
|
|
163
264
|
},
|
|
@@ -165,19 +266,31 @@
|
|
|
165
266
|
"patterns": [
|
|
166
267
|
{
|
|
167
268
|
"name": "storage.modifier.cssl",
|
|
168
|
-
"match": "\\b(undefined|open|closed|private|virtual|meta|super|sqlbased)\\b"
|
|
269
|
+
"match": "\\b(undefined|open|closed|private|virtual|meta|super|sqlbased|protected|limited)\\b"
|
|
169
270
|
}
|
|
170
271
|
]
|
|
171
272
|
},
|
|
172
273
|
"injection-operators": {
|
|
173
274
|
"patterns": [
|
|
174
275
|
{
|
|
175
|
-
"
|
|
176
|
-
"
|
|
276
|
+
"comment": "Infuse operators <<== (REPLACE) - orange color",
|
|
277
|
+
"name": "constant.character.escape.infuse.cssl",
|
|
278
|
+
"match": "(\\+<<==|<<==|-<<==)"
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
"comment": "Infuse out operators ==>> - orange color",
|
|
282
|
+
"name": "constant.character.escape.infuse.out.cssl",
|
|
283
|
+
"match": "(==>>\\+|==>>|-==>>)"
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"comment": "Brute injection <== (ADD) - cyan/blue color",
|
|
287
|
+
"name": "support.function.brute.cssl",
|
|
288
|
+
"match": "(\\+<==|<==|-<==)"
|
|
177
289
|
},
|
|
178
290
|
{
|
|
179
|
-
"
|
|
180
|
-
"
|
|
291
|
+
"comment": "Brute injection out ==> - cyan/blue color",
|
|
292
|
+
"name": "support.function.brute.out.cssl",
|
|
293
|
+
"match": "(==>\\+|==>|-==>)"
|
|
181
294
|
},
|
|
182
295
|
{
|
|
183
296
|
"name": "keyword.operator.flow.cssl",
|
|
@@ -189,7 +302,7 @@
|
|
|
189
302
|
"patterns": [
|
|
190
303
|
{
|
|
191
304
|
"name": "support.function.namespace.json.cssl",
|
|
192
|
-
"match": "\\bjson::(read|write|parse|stringify|pretty|get|set|has|keys|values|merge)\\b"
|
|
305
|
+
"match": "\\bjson::(read|write|parse|stringify|pretty|get|set|has|keys|values|merge|key|value)\\b"
|
|
193
306
|
},
|
|
194
307
|
{
|
|
195
308
|
"name": "support.function.namespace.instance.cssl",
|
|
@@ -198,6 +311,26 @@
|
|
|
198
311
|
{
|
|
199
312
|
"name": "support.function.namespace.string.cssl",
|
|
200
313
|
"match": "\\bstring::(where|contains|not|startsWith|endsWith|length|lenght|cut|cutAfter|value)\\b"
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"name": "support.function.namespace.sql.cssl",
|
|
317
|
+
"match": "\\bsql::(connect|load|save|update|sync|Structured)\\b"
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"name": "support.function.namespace.combo.cssl",
|
|
321
|
+
"match": "\\bcombo::(filterdb|blocked|like)\\b"
|
|
322
|
+
}
|
|
323
|
+
]
|
|
324
|
+
},
|
|
325
|
+
"iterator-methods": {
|
|
326
|
+
"patterns": [
|
|
327
|
+
{
|
|
328
|
+
"name": "support.function.iterator.cssl",
|
|
329
|
+
"match": "::iterator::(set|move|insert|pop|task|dtask|read|write)\\b"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"name": "support.function.like.cssl",
|
|
333
|
+
"match": "::like\\s*="
|
|
201
334
|
}
|
|
202
335
|
]
|
|
203
336
|
},
|
|
@@ -205,7 +338,7 @@
|
|
|
205
338
|
"patterns": [
|
|
206
339
|
{
|
|
207
340
|
"name": "support.function.filter.cssl",
|
|
208
|
-
"match": "\\
|
|
341
|
+
"match": "\\[(string|integer|json|array|vector|combo|dynamic|sql)::(where|contains|not|startsWith|endsWith|length|lenght|key|value|index|filterdb|blocked|data)\\s*=?"
|
|
209
342
|
}
|
|
210
343
|
]
|
|
211
344
|
},
|
|
@@ -224,23 +357,30 @@
|
|
|
224
357
|
"captured-references": {
|
|
225
358
|
"patterns": [
|
|
226
359
|
{
|
|
227
|
-
"
|
|
228
|
-
"match": "%[a-zA-Z_][a-zA-Z0-9_]*"
|
|
360
|
+
"comment": "%identifier - % is light blue/cyan, identifier is pink",
|
|
361
|
+
"match": "(%)([a-zA-Z_][a-zA-Z0-9_]*)",
|
|
362
|
+
"captures": {
|
|
363
|
+
"1": { "name": "support.type.cssl" },
|
|
364
|
+
"2": { "name": "entity.other.inherited-class.cssl" }
|
|
365
|
+
}
|
|
229
366
|
}
|
|
230
367
|
]
|
|
231
368
|
},
|
|
232
369
|
"global-references": {
|
|
233
370
|
"patterns": [
|
|
234
371
|
{
|
|
235
|
-
"
|
|
372
|
+
"comment": "@identifier - magenta color (full)",
|
|
373
|
+
"name": "constant.other.symbol.cssl",
|
|
236
374
|
"match": "@[a-zA-Z_][a-zA-Z0-9_]*"
|
|
237
375
|
},
|
|
238
376
|
{
|
|
239
|
-
"
|
|
377
|
+
"comment": "r@identifier - magenta color",
|
|
378
|
+
"name": "constant.other.symbol.cssl",
|
|
240
379
|
"match": "r@[a-zA-Z_][a-zA-Z0-9_]*"
|
|
241
380
|
},
|
|
242
381
|
{
|
|
243
|
-
"
|
|
382
|
+
"comment": "s@identifier - magenta color",
|
|
383
|
+
"name": "constant.other.symbol.cssl",
|
|
244
384
|
"match": "s@[a-zA-Z_][a-zA-Z0-9_]*"
|
|
245
385
|
}
|
|
246
386
|
]
|
|
@@ -248,16 +388,44 @@
|
|
|
248
388
|
"shared-references": {
|
|
249
389
|
"patterns": [
|
|
250
390
|
{
|
|
251
|
-
"
|
|
391
|
+
"comment": "$identifier - same color as 'new' keyword (full)",
|
|
392
|
+
"name": "keyword.operator.new.cssl",
|
|
252
393
|
"match": "\\$[a-zA-Z_][a-zA-Z0-9_]*"
|
|
253
394
|
}
|
|
254
395
|
]
|
|
255
396
|
},
|
|
397
|
+
"variables": {
|
|
398
|
+
"patterns": [
|
|
399
|
+
{
|
|
400
|
+
"comment": "Regular variables - pink/salmon color",
|
|
401
|
+
"name": "entity.other.inherited-class.cssl",
|
|
402
|
+
"match": "\\b[a-z_][a-zA-Z0-9_]*\\b"
|
|
403
|
+
}
|
|
404
|
+
]
|
|
405
|
+
},
|
|
256
406
|
"instance-references": {
|
|
257
407
|
"patterns": [
|
|
258
408
|
{
|
|
259
|
-
"
|
|
260
|
-
"
|
|
409
|
+
"comment": "instance<\"name\"> - shared instance reference with string",
|
|
410
|
+
"name": "meta.instance.cssl",
|
|
411
|
+
"match": "(\\binstance)(<)(\"[^\"]+\")(>)",
|
|
412
|
+
"captures": {
|
|
413
|
+
"1": { "name": "storage.type.instance.cssl" },
|
|
414
|
+
"2": { "name": "punctuation.definition.typeparameters.begin.cssl" },
|
|
415
|
+
"3": { "name": "string.quoted.double.cssl" },
|
|
416
|
+
"4": { "name": "punctuation.definition.typeparameters.end.cssl" }
|
|
417
|
+
}
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"comment": "instance<Type> - shared instance reference with type",
|
|
421
|
+
"name": "meta.instance.cssl",
|
|
422
|
+
"match": "(\\binstance)(<)([a-zA-Z_][a-zA-Z0-9_]*)(>)",
|
|
423
|
+
"captures": {
|
|
424
|
+
"1": { "name": "storage.type.instance.cssl" },
|
|
425
|
+
"2": { "name": "punctuation.definition.typeparameters.begin.cssl" },
|
|
426
|
+
"3": { "name": "entity.name.type.cssl" },
|
|
427
|
+
"4": { "name": "punctuation.definition.typeparameters.end.cssl" }
|
|
428
|
+
}
|
|
261
429
|
}
|
|
262
430
|
]
|
|
263
431
|
},
|
|
@@ -269,6 +437,22 @@
|
|
|
269
437
|
}
|
|
270
438
|
]
|
|
271
439
|
},
|
|
440
|
+
"reference-operator": {
|
|
441
|
+
"patterns": [
|
|
442
|
+
{
|
|
443
|
+
"name": "keyword.operator.reference.cssl",
|
|
444
|
+
"match": "&(?=[a-zA-Z_@])"
|
|
445
|
+
}
|
|
446
|
+
]
|
|
447
|
+
},
|
|
448
|
+
"method-calls": {
|
|
449
|
+
"patterns": [
|
|
450
|
+
{
|
|
451
|
+
"name": "support.function.method.cssl",
|
|
452
|
+
"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"
|
|
453
|
+
}
|
|
454
|
+
]
|
|
455
|
+
},
|
|
272
456
|
"function-calls": {
|
|
273
457
|
"patterns": [
|
|
274
458
|
{
|
|
@@ -293,7 +477,7 @@
|
|
|
293
477
|
},
|
|
294
478
|
{
|
|
295
479
|
"name": "support.function.builtin.special.cssl",
|
|
296
|
-
"match": "\\b(OpenFind|share|shared)\\b"
|
|
480
|
+
"match": "\\b(OpenFind|share|shared|include)\\b"
|
|
297
481
|
},
|
|
298
482
|
{
|
|
299
483
|
"name": "support.variable.builtin.parameter.cssl",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: IncludeCPP
|
|
3
|
-
Version: 3.7.
|
|
3
|
+
Version: 3.7.25
|
|
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
|
|
@@ -623,7 +623,7 @@ Then check **"Enable Experimental Features"** and save.
|
|
|
623
623
|
|
|
624
624
|
Use at your own discretion. Report issues at: https://github.com/liliassg/IncludeCPP/issues
|
|
625
625
|
|
|
626
|
-
# CSSL -
|
|
626
|
+
# CSSL - C-Style Scripting Language
|
|
627
627
|
|
|
628
628
|
IncludeCPP includes CSSL, a scripting language with advanced data manipulation features.
|
|
629
629
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
includecpp/__init__.py,sha256=
|
|
2
|
-
includecpp/__init__.pyi,sha256=
|
|
1
|
+
includecpp/__init__.py,sha256=YgP_G9kl_90bbm_zr9NJq-rDfpM76tC8vfJGNIHBYxY,1673
|
|
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
|
|
5
5
|
includecpp/cli/__init__.py,sha256=Yda-4a5QJb_tKu35YQNfc5lu-LewTsM5abqNNkzS47M,113
|
|
6
|
-
includecpp/cli/commands.py,sha256=
|
|
6
|
+
includecpp/cli/commands.py,sha256=HDoRuPEPTzxZQcR4rF45GrRVtcw3zDj6cGiwLCZB44Y,349597
|
|
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=
|
|
14
|
+
includecpp/core/cssl_bridge.py,sha256=Kgq08agrsSCZDXTv2sJZi-K8tkW-04Ezb8ev9-p7Rh0,42968
|
|
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,16 +19,16 @@ 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=
|
|
23
|
-
includecpp/core/cssl/__init__.py,sha256=
|
|
24
|
-
includecpp/core/cssl/cssl_builtins.py,sha256=
|
|
25
|
-
includecpp/core/cssl/cssl_builtins.pyi,sha256=
|
|
22
|
+
includecpp/core/cssl/CSSL_DOCUMENTATION.md,sha256=47sUPO-FMq_8_CrJBZFoFBgSO3gSi5zoB1Xp7oeifho,40773
|
|
23
|
+
includecpp/core/cssl/__init__.py,sha256=scDXRBNK2L6A8qmlpNyaqQj6BFcSfPInBlucdeNfMF0,1975
|
|
24
|
+
includecpp/core/cssl/cssl_builtins.py,sha256=r-FX4WQeKxerkepqodIiwhtL_kxxa4PJym_WyWIwA_s,92290
|
|
25
|
+
includecpp/core/cssl/cssl_builtins.pyi,sha256=3ai2V4LyhzPBhAKjRRf0rLVu_bg9ECmTfTkdFKM64iA,127430
|
|
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=
|
|
29
|
-
includecpp/core/cssl/cssl_runtime.py,sha256=
|
|
30
|
-
includecpp/core/cssl/cssl_syntax.py,sha256=
|
|
31
|
-
includecpp/core/cssl/cssl_types.py,sha256=
|
|
28
|
+
includecpp/core/cssl/cssl_parser.py,sha256=fphjjN2MRURMkqi0lFEf6l61xC9IPImlYVjlqonZZHc,117139
|
|
29
|
+
includecpp/core/cssl/cssl_runtime.py,sha256=iZgNcKDoTeV50-IsXcsrpuTyDPxEHWyQz5uR3s5UVHg,154613
|
|
30
|
+
includecpp/core/cssl/cssl_syntax.py,sha256=bgo3NFehoPTQa5dqwNd_CstkVGVCNYAXbGYUcu5BEN0,16982
|
|
31
|
+
includecpp/core/cssl/cssl_types.py,sha256=gVjtfxk0Uzfj-H7_LD79oqspFMYDf79ZrRrlZk8eAEs,50647
|
|
32
32
|
includecpp/generator/__init__.py,sha256=Rsy41bwimaEloD3gDRR_znPfIJzIsCFuWZgCTJBLJlc,62
|
|
33
33
|
includecpp/generator/parser.cpp,sha256=hbhHdtFH65rzp6prnARN9pNFF_ssr0NseVVcxq0fJh4,76833
|
|
34
34
|
includecpp/generator/parser.h,sha256=EDm0b-pEesIIIQQ2PvH5h2qwlqJU9BH8SiMV7MWbsTo,11073
|
|
@@ -37,13 +37,16 @@ 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/
|
|
41
|
-
includecpp/vscode/cssl/
|
|
40
|
+
includecpp/vscode/cssl/extension.js,sha256=YLFDuKQVdGi15l_vUadD9nlu8mcjzUm_rKj4-oxV-ak,4302
|
|
41
|
+
includecpp/vscode/cssl/language-configuration.json,sha256=61Q00cKI9may5L8YpxMmvfo6PAc-abdJqApfR85DWuw,904
|
|
42
|
+
includecpp/vscode/cssl/package.json,sha256=Zu2QoTE0OVCCDUHp1hc7kN2NBbFs60bX-LLGMpXz25M,4853
|
|
43
|
+
includecpp/vscode/cssl/images/cssl.png,sha256=BxAGsnfS0ZzzCvqV6Zb1OAJAZpDUoXlR86MsvUGlSZw,510
|
|
44
|
+
includecpp/vscode/cssl/images/cssl_pl.png,sha256=z4WMk7g6YCTbUUbSFk343BO6yi_OmNEVYkRenWGydwM,799
|
|
42
45
|
includecpp/vscode/cssl/snippets/cssl.snippets.json,sha256=l4SCEPR3CsPxA8HIVLKYY__I979TfKzYWtH1KYIsboo,33062
|
|
43
|
-
includecpp/vscode/cssl/syntaxes/cssl.tmLanguage.json,sha256=
|
|
44
|
-
includecpp-3.7.
|
|
45
|
-
includecpp-3.7.
|
|
46
|
-
includecpp-3.7.
|
|
47
|
-
includecpp-3.7.
|
|
48
|
-
includecpp-3.7.
|
|
49
|
-
includecpp-3.7.
|
|
46
|
+
includecpp/vscode/cssl/syntaxes/cssl.tmLanguage.json,sha256=XKRLBOHlCqDDnGPvmNHDQPsIMR1UD9PBaJIlgZOiPqM,21173
|
|
47
|
+
includecpp-3.7.25.dist-info/licenses/LICENSE,sha256=fWCsGGsiWZir0UzDd20Hh-3wtRyk1zqUntvtVuAWhvc,1093
|
|
48
|
+
includecpp-3.7.25.dist-info/METADATA,sha256=7e3lYqfMjuU6hs9mv5Ol5l7Zpjtr5I_QXp5Mmxh2ftQ,32122
|
|
49
|
+
includecpp-3.7.25.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
50
|
+
includecpp-3.7.25.dist-info/entry_points.txt,sha256=6A5Mif9gi0139Bf03W5plAb3wnAgbNaEVe1HJoGE-2o,59
|
|
51
|
+
includecpp-3.7.25.dist-info/top_level.txt,sha256=RFUaR1KG-M6mCYwP6w4ydP5Cgc8yNbP78jxGAvyjMa8,11
|
|
52
|
+
includecpp-3.7.25.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|