IncludeCPP 3.6.0__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.
- includecpp/__init__.py +1 -1
- includecpp/cli/commands.py +590 -11
- includecpp/core/cssl/CSSL_DOCUMENTATION.md +301 -20
- includecpp/core/cssl/cssl_builtins.py +114 -0
- includecpp/core/cssl/cssl_builtins.pyi +1393 -0
- includecpp/core/cssl/cssl_parser.py +348 -70
- includecpp/core/cssl/cssl_runtime.py +456 -16
- includecpp/core/cssl/cssl_types.py +224 -2
- includecpp/core/cssl_bridge.py +477 -48
- includecpp/vscode/cssl/language-configuration.json +1 -4
- includecpp/vscode/cssl/package.json +24 -4
- includecpp/vscode/cssl/snippets/cssl.snippets.json +1080 -0
- includecpp/vscode/cssl/syntaxes/cssl.tmLanguage.json +298 -17
- {includecpp-3.6.0.dist-info → includecpp-3.7.9.dist-info}/METADATA +1 -1
- {includecpp-3.6.0.dist-info → includecpp-3.7.9.dist-info}/RECORD +19 -17
- {includecpp-3.6.0.dist-info → includecpp-3.7.9.dist-info}/WHEEL +0 -0
- {includecpp-3.6.0.dist-info → includecpp-3.7.9.dist-info}/entry_points.txt +0 -0
- {includecpp-3.6.0.dist-info → includecpp-3.7.9.dist-info}/licenses/LICENSE +0 -0
- {includecpp-3.6.0.dist-info → includecpp-3.7.9.dist-info}/top_level.txt +0 -0
|
@@ -3,22 +3,45 @@
|
|
|
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" },
|
|
10
|
+
{ "include": "#class-definition" },
|
|
11
|
+
{ "include": "#sql-types" },
|
|
9
12
|
{ "include": "#keywords" },
|
|
10
13
|
{ "include": "#types" },
|
|
11
14
|
{ "include": "#function-modifiers" },
|
|
12
15
|
{ "include": "#injection-operators" },
|
|
16
|
+
{ "include": "#namespace-functions" },
|
|
17
|
+
{ "include": "#iterator-methods" },
|
|
13
18
|
{ "include": "#filter-helpers" },
|
|
19
|
+
{ "include": "#this-access" },
|
|
20
|
+
{ "include": "#captured-references" },
|
|
14
21
|
{ "include": "#global-references" },
|
|
15
22
|
{ "include": "#shared-references" },
|
|
23
|
+
{ "include": "#instance-references" },
|
|
16
24
|
{ "include": "#module-references" },
|
|
25
|
+
{ "include": "#reference-operator" },
|
|
26
|
+
{ "include": "#method-calls" },
|
|
17
27
|
{ "include": "#function-calls" },
|
|
28
|
+
{ "include": "#builtins" },
|
|
18
29
|
{ "include": "#operators" },
|
|
19
30
|
{ "include": "#constants" }
|
|
20
31
|
],
|
|
21
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
|
+
},
|
|
22
45
|
"comments": {
|
|
23
46
|
"patterns": [
|
|
24
47
|
{
|
|
@@ -43,6 +66,10 @@
|
|
|
43
66
|
"name": "constant.character.escape.cssl",
|
|
44
67
|
"match": "\\\\."
|
|
45
68
|
},
|
|
69
|
+
{
|
|
70
|
+
"name": "variable.other.interpolated.fstring.cssl",
|
|
71
|
+
"match": "\\{[a-zA-Z_][a-zA-Z0-9_]*\\}"
|
|
72
|
+
},
|
|
46
73
|
{
|
|
47
74
|
"name": "variable.other.interpolated.cssl",
|
|
48
75
|
"match": "<[a-zA-Z_][a-zA-Z0-9_]*>"
|
|
@@ -71,6 +98,98 @@
|
|
|
71
98
|
{
|
|
72
99
|
"name": "constant.numeric.integer.cssl",
|
|
73
100
|
"match": "\\b[0-9]+\\b"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"name": "constant.numeric.hex.cssl",
|
|
104
|
+
"match": "\\b0x[0-9A-Fa-f]+\\b"
|
|
105
|
+
}
|
|
106
|
+
]
|
|
107
|
+
},
|
|
108
|
+
"class-definition": {
|
|
109
|
+
"patterns": [
|
|
110
|
+
{
|
|
111
|
+
"name": "meta.class.cssl",
|
|
112
|
+
"begin": "\\b(class)\\s+([a-zA-Z_][a-zA-Z0-9_]*)\\s*\\{",
|
|
113
|
+
"beginCaptures": {
|
|
114
|
+
"1": { "name": "storage.type.class.cssl" },
|
|
115
|
+
"2": { "name": "entity.name.class.cssl" }
|
|
116
|
+
},
|
|
117
|
+
"end": "\\}",
|
|
118
|
+
"patterns": [
|
|
119
|
+
{ "include": "#comments" },
|
|
120
|
+
{ "include": "#constructor-definition" },
|
|
121
|
+
{ "include": "#class-method-definition" },
|
|
122
|
+
{ "include": "#class-member-declaration" },
|
|
123
|
+
{ "include": "#types" },
|
|
124
|
+
{ "include": "#this-access" },
|
|
125
|
+
{ "include": "#strings" },
|
|
126
|
+
{ "include": "#numbers" },
|
|
127
|
+
{ "include": "#keywords" },
|
|
128
|
+
{ "include": "#function-calls" },
|
|
129
|
+
{ "include": "#builtins" },
|
|
130
|
+
{ "include": "#operators" }
|
|
131
|
+
]
|
|
132
|
+
}
|
|
133
|
+
]
|
|
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
|
+
},
|
|
172
|
+
"function-definition": {
|
|
173
|
+
"patterns": [
|
|
174
|
+
{
|
|
175
|
+
"name": "meta.function.cssl",
|
|
176
|
+
"match": "\\b(void|int|string|float|bool|dynamic|[A-Z][a-zA-Z0-9_]*)\\s+([a-zA-Z_][a-zA-Z0-9_]*)\\s*\\(",
|
|
177
|
+
"captures": {
|
|
178
|
+
"1": { "name": "storage.type.cssl" },
|
|
179
|
+
"2": { "name": "entity.name.function.cssl" }
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
]
|
|
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"
|
|
74
193
|
}
|
|
75
194
|
]
|
|
76
195
|
},
|
|
@@ -80,9 +199,25 @@
|
|
|
80
199
|
"name": "keyword.control.cssl",
|
|
81
200
|
"match": "\\b(if|else|elif|while|for|foreach|in|range|switch|case|default|break|continue|return|try|catch|finally|throw)\\b"
|
|
82
201
|
},
|
|
202
|
+
{
|
|
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"
|
|
217
|
+
},
|
|
83
218
|
{
|
|
84
219
|
"name": "keyword.other.cssl",
|
|
85
|
-
"match": "\\b(service-init|service-run|service-include|
|
|
220
|
+
"match": "\\b(service-init|service-run|service-include|main|package|package-includes|exec|as|global|include|get|payload|convert)\\b"
|
|
86
221
|
},
|
|
87
222
|
{
|
|
88
223
|
"name": "keyword.operator.logical.cssl",
|
|
@@ -98,18 +233,26 @@
|
|
|
98
233
|
"patterns": [
|
|
99
234
|
{
|
|
100
235
|
"name": "storage.type.primitive.cssl",
|
|
101
|
-
"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
|
+
}
|
|
102
248
|
},
|
|
103
249
|
{
|
|
104
250
|
"name": "storage.type.container.cssl",
|
|
105
|
-
"match": "\\b(array|vector|stack|datastruct|dataspace|shuffled|iterator|combo|openquote)\\b"
|
|
251
|
+
"match": "\\b(array|vector|stack|list|dictionary|dict|map|datastruct|dataspace|shuffled|iterator|combo|openquote|instance|tuple|set|queue)\\b"
|
|
106
252
|
},
|
|
107
253
|
{
|
|
108
|
-
"name": "storage.type.
|
|
109
|
-
"match": "\\
|
|
110
|
-
"captures": {
|
|
111
|
-
"1": { "name": "storage.type.container.cssl" }
|
|
112
|
-
}
|
|
254
|
+
"name": "storage.type.combo-open.cssl",
|
|
255
|
+
"match": "\\bcombo\\s*<\\s*open\\s*&"
|
|
113
256
|
}
|
|
114
257
|
]
|
|
115
258
|
},
|
|
@@ -117,19 +260,71 @@
|
|
|
117
260
|
"patterns": [
|
|
118
261
|
{
|
|
119
262
|
"name": "storage.modifier.cssl",
|
|
120
|
-
"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"
|
|
121
264
|
}
|
|
122
265
|
]
|
|
123
266
|
},
|
|
124
267
|
"injection-operators": {
|
|
125
268
|
"patterns": [
|
|
126
269
|
{
|
|
127
|
-
"
|
|
128
|
-
"
|
|
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": "(==>>\\+|==>>|-==>>)"
|
|
129
278
|
},
|
|
130
279
|
{
|
|
131
|
-
"
|
|
132
|
-
"
|
|
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": "(==>\\+|==>|-==>)"
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"name": "keyword.operator.flow.cssl",
|
|
291
|
+
"match": "(->|<-)"
|
|
292
|
+
}
|
|
293
|
+
]
|
|
294
|
+
},
|
|
295
|
+
"namespace-functions": {
|
|
296
|
+
"patterns": [
|
|
297
|
+
{
|
|
298
|
+
"name": "support.function.namespace.json.cssl",
|
|
299
|
+
"match": "\\bjson::(read|write|parse|stringify|pretty|get|set|has|keys|values|merge|key|value)\\b"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"name": "support.function.namespace.instance.cssl",
|
|
303
|
+
"match": "\\binstance::(getMethods|getClasses|getVars|getAll|call|has|type|exists)\\b"
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"name": "support.function.namespace.string.cssl",
|
|
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*="
|
|
133
328
|
}
|
|
134
329
|
]
|
|
135
330
|
},
|
|
@@ -137,7 +332,27 @@
|
|
|
137
332
|
"patterns": [
|
|
138
333
|
{
|
|
139
334
|
"name": "support.function.filter.cssl",
|
|
140
|
-
"match": "\\
|
|
335
|
+
"match": "\\[(string|integer|json|array|vector|combo|dynamic|sql)::(where|contains|not|startsWith|endsWith|length|lenght|key|value|index|filterdb|blocked|data)\\s*=?"
|
|
336
|
+
}
|
|
337
|
+
]
|
|
338
|
+
},
|
|
339
|
+
"this-access": {
|
|
340
|
+
"patterns": [
|
|
341
|
+
{
|
|
342
|
+
"name": "variable.language.this.cssl",
|
|
343
|
+
"match": "\\bthis\\s*->"
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"name": "variable.language.this.member.cssl",
|
|
347
|
+
"match": "(?<=this->)[a-zA-Z_][a-zA-Z0-9_]*"
|
|
348
|
+
}
|
|
349
|
+
]
|
|
350
|
+
},
|
|
351
|
+
"captured-references": {
|
|
352
|
+
"patterns": [
|
|
353
|
+
{
|
|
354
|
+
"name": "variable.other.captured.cssl",
|
|
355
|
+
"match": "%[a-zA-Z_][a-zA-Z0-9_]*"
|
|
141
356
|
}
|
|
142
357
|
]
|
|
143
358
|
},
|
|
@@ -165,6 +380,32 @@
|
|
|
165
380
|
}
|
|
166
381
|
]
|
|
167
382
|
},
|
|
383
|
+
"instance-references": {
|
|
384
|
+
"patterns": [
|
|
385
|
+
{
|
|
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
|
+
}
|
|
406
|
+
}
|
|
407
|
+
]
|
|
408
|
+
},
|
|
168
409
|
"module-references": {
|
|
169
410
|
"patterns": [
|
|
170
411
|
{
|
|
@@ -173,15 +414,51 @@
|
|
|
173
414
|
}
|
|
174
415
|
]
|
|
175
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
|
+
},
|
|
176
433
|
"function-calls": {
|
|
177
434
|
"patterns": [
|
|
178
435
|
{
|
|
179
436
|
"name": "entity.name.function.cssl",
|
|
180
437
|
"match": "\\b([a-zA-Z_][a-zA-Z0-9_]*)\\s*(?=\\()"
|
|
438
|
+
}
|
|
439
|
+
]
|
|
440
|
+
},
|
|
441
|
+
"builtins": {
|
|
442
|
+
"patterns": [
|
|
443
|
+
{
|
|
444
|
+
"name": "support.function.builtin.io.cssl",
|
|
445
|
+
"match": "\\b(printl|print|println|input|read|readline|write|writeline)\\b"
|
|
181
446
|
},
|
|
182
447
|
{
|
|
183
|
-
"name": "support.function.builtin.cssl",
|
|
184
|
-
"match": "\\b(
|
|
448
|
+
"name": "support.function.builtin.type.cssl",
|
|
449
|
+
"match": "\\b(len|type|toInt|toFloat|toString|toBool|typeof)\\b"
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
"name": "support.function.builtin.control.cssl",
|
|
453
|
+
"match": "\\b(exit|sleep|range|isavailable)\\b"
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
"name": "support.function.builtin.special.cssl",
|
|
457
|
+
"match": "\\b(OpenFind|share|shared|include)\\b"
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"name": "support.variable.builtin.parameter.cssl",
|
|
461
|
+
"match": "\\bparameter\\.(get|return|count|all|has|returns)\\b"
|
|
185
462
|
}
|
|
186
463
|
]
|
|
187
464
|
},
|
|
@@ -193,7 +470,7 @@
|
|
|
193
470
|
},
|
|
194
471
|
{
|
|
195
472
|
"name": "keyword.operator.arithmetic.cssl",
|
|
196
|
-
"match": "(
|
|
473
|
+
"match": "(\\+\\+|--|\\+=|-=|\\*=|/=|\\+|-|\\*|/|%)"
|
|
197
474
|
},
|
|
198
475
|
{
|
|
199
476
|
"name": "keyword.operator.logical.cssl",
|
|
@@ -202,6 +479,10 @@
|
|
|
202
479
|
{
|
|
203
480
|
"name": "keyword.operator.assignment.cssl",
|
|
204
481
|
"match": "="
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
"name": "keyword.operator.member.cssl",
|
|
485
|
+
"match": "\\."
|
|
205
486
|
}
|
|
206
487
|
]
|
|
207
488
|
},
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
includecpp/__init__.py,sha256=
|
|
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=
|
|
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=
|
|
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,15 +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=
|
|
22
|
+
includecpp/core/cssl/CSSL_DOCUMENTATION.md,sha256=47sUPO-FMq_8_CrJBZFoFBgSO3gSi5zoB1Xp7oeifho,40773
|
|
23
23
|
includecpp/core/cssl/__init__.py,sha256=TYRlyheTw5OYkkmUxJYpAjyyQShu6NF4igYZYE76eR0,1811
|
|
24
|
-
includecpp/core/cssl/cssl_builtins.py,sha256=
|
|
24
|
+
includecpp/core/cssl/cssl_builtins.py,sha256=MJtWF7PeWkasxxkpN2zaCjeIJoQw5BPy-jQNYberMQo,85010
|
|
25
|
+
includecpp/core/cssl/cssl_builtins.pyi,sha256=Zc__PCO9FDaTPPG92zgK6_QoeMohbs0xlv6YGPubEdQ,31010
|
|
25
26
|
includecpp/core/cssl/cssl_events.py,sha256=nupIcXW_Vjdud7zCU6hdwkQRQ0MujlPM7Tk2u7eDAiY,21013
|
|
26
27
|
includecpp/core/cssl/cssl_modules.py,sha256=cUg0-zdymMnWWTsA_BUrW5dx4R04dHpKcUhm-Wfiwwo,103006
|
|
27
|
-
includecpp/core/cssl/cssl_parser.py,sha256=
|
|
28
|
-
includecpp/core/cssl/cssl_runtime.py,sha256=
|
|
28
|
+
includecpp/core/cssl/cssl_parser.py,sha256=pOWe6kle4EvXLai3DNHfLcYGeb568EQ8upxscVVR5m0,113161
|
|
29
|
+
includecpp/core/cssl/cssl_runtime.py,sha256=3b14wEWvLpFDVA0r0pyNqy02l7s9FTdXQd61BdpPlZg,131780
|
|
29
30
|
includecpp/core/cssl/cssl_syntax.py,sha256=vgI-dgj6gs9cOHwNRff6JbwZZYW_fYutnwCkznlgZiE,17006
|
|
30
|
-
includecpp/core/cssl/cssl_types.py,sha256=
|
|
31
|
+
includecpp/core/cssl/cssl_types.py,sha256=XftmkvjxL-mKMz6HiTtnruG6P7haM21gFm7P9Caovug,48213
|
|
31
32
|
includecpp/generator/__init__.py,sha256=Rsy41bwimaEloD3gDRR_znPfIJzIsCFuWZgCTJBLJlc,62
|
|
32
33
|
includecpp/generator/parser.cpp,sha256=hbhHdtFH65rzp6prnARN9pNFF_ssr0NseVVcxq0fJh4,76833
|
|
33
34
|
includecpp/generator/parser.h,sha256=EDm0b-pEesIIIQQ2PvH5h2qwlqJU9BH8SiMV7MWbsTo,11073
|
|
@@ -36,12 +37,13 @@ includecpp/generator/type_resolver.h,sha256=ZsaxQqcCcKJJApYn7KOp2dLlQ1VFVG_oZDja
|
|
|
36
37
|
includecpp/templates/cpp.proj.template,sha256=Iy-L8I4Cl3tIgBMx1Qp5h6gURvkqOAqyodVHuDJ0Luw,359
|
|
37
38
|
includecpp/vscode/__init__.py,sha256=yLKw-_7MTX1Rx3jLk5JjharJQfFXbwtZVE7YqHpM7yg,39
|
|
38
39
|
includecpp/vscode/cssl/__init__.py,sha256=rQJAx5X05v-mAwqX1Qb-rbZO219iR73MziFNRUCNUIo,31
|
|
39
|
-
includecpp/vscode/cssl/language-configuration.json,sha256=
|
|
40
|
-
includecpp/vscode/cssl/package.json,sha256=
|
|
41
|
-
includecpp/vscode/cssl/
|
|
42
|
-
includecpp
|
|
43
|
-
includecpp-3.
|
|
44
|
-
includecpp-3.
|
|
45
|
-
includecpp-3.
|
|
46
|
-
includecpp-3.
|
|
47
|
-
includecpp-3.
|
|
40
|
+
includecpp/vscode/cssl/language-configuration.json,sha256=61Q00cKI9may5L8YpxMmvfo6PAc-abdJqApfR85DWuw,904
|
|
41
|
+
includecpp/vscode/cssl/package.json,sha256=MWWIRLUnGvadWzEyfWdykUZHTsrG18sqpn5US5sXqac,1435
|
|
42
|
+
includecpp/vscode/cssl/snippets/cssl.snippets.json,sha256=l4SCEPR3CsPxA8HIVLKYY__I979TfKzYWtH1KYIsboo,33062
|
|
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,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|