IncludeCPP 4.0.3__py3-none-any.whl → 4.1.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.
- includecpp/__init__.py +1 -1
- includecpp/__init__.pyi +3 -1
- includecpp/cli/commands.py +3 -3
- includecpp/core/ai_integration.py +46 -13
- includecpp/core/cpp_api_extensions.pyi +622 -0
- includecpp/core/cssl/CSSL_DOCUMENTATION.md +186 -5
- includecpp/core/cssl/cssl_builtins.py +87 -2
- includecpp/core/cssl/cssl_languages.py +836 -0
- includecpp/core/cssl/cssl_parser.py +138 -38
- includecpp/core/cssl/cssl_runtime.py +178 -11
- includecpp/core/cssl/cssl_syntax.py +88 -4
- includecpp/core/cssl/cssl_types.py +31 -2
- {includecpp-4.0.3.dist-info → includecpp-4.1.0.dist-info}/METADATA +101 -1
- {includecpp-4.0.3.dist-info → includecpp-4.1.0.dist-info}/RECORD +18 -16
- {includecpp-4.0.3.dist-info → includecpp-4.1.0.dist-info}/WHEEL +0 -0
- {includecpp-4.0.3.dist-info → includecpp-4.1.0.dist-info}/entry_points.txt +0 -0
- {includecpp-4.0.3.dist-info → includecpp-4.1.0.dist-info}/licenses/LICENSE +0 -0
- {includecpp-4.0.3.dist-info → includecpp-4.1.0.dist-info}/top_level.txt +0 -0
|
@@ -31,6 +31,11 @@ class TokenCategory(Enum):
|
|
|
31
31
|
NULL = auto() # null, None
|
|
32
32
|
PACKAGE_KW = auto() # package, package-includes - NEW
|
|
33
33
|
TYPE_LITERAL = auto() # list, dict - NEW
|
|
34
|
+
# v4.1.0: Multi-language support
|
|
35
|
+
SUPPORTS_KW = auto() # supports keyword (magenta)
|
|
36
|
+
LIBINCLUDE_KW = auto() # libinclude (yellow/gold)
|
|
37
|
+
LANG_PREFIX = auto() # Language prefix before $ (cyan): cpp$, py$, java$
|
|
38
|
+
LANG_INSTANCE = auto() # Instance name after $ (orange): cpp$ClassName
|
|
34
39
|
|
|
35
40
|
|
|
36
41
|
@dataclass
|
|
@@ -52,9 +57,17 @@ KEYWORDS = {
|
|
|
52
57
|
'start', 'stop', 'wait_for', 'on_event', 'emit_event',
|
|
53
58
|
'await',
|
|
54
59
|
# NEW: Extended keywords
|
|
55
|
-
'package', 'package-includes', 'exec', 'as', 'global'
|
|
60
|
+
'package', 'package-includes', 'exec', 'as', 'global',
|
|
61
|
+
# v4.1.0: Multi-language support (handled separately for special colors)
|
|
62
|
+
# 'supports', 'libinclude' - see MULTI_LANG_KEYWORDS
|
|
56
63
|
}
|
|
57
64
|
|
|
65
|
+
# v4.1.0: Multi-language keywords with special highlighting
|
|
66
|
+
MULTI_LANG_KEYWORDS = {'supports', 'libinclude'}
|
|
67
|
+
|
|
68
|
+
# v4.1.0: Language identifiers for cross-language instance access
|
|
69
|
+
LANGUAGE_IDS = {'cpp', 'py', 'python', 'java', 'csharp', 'js', 'javascript'}
|
|
70
|
+
|
|
58
71
|
# NEW: Package-related keywords for special highlighting
|
|
59
72
|
PACKAGE_KEYWORDS = {'package', 'package-includes'}
|
|
60
73
|
|
|
@@ -145,6 +158,33 @@ class CSSLSyntaxRules:
|
|
|
145
158
|
category=TokenCategory.TYPE_LITERAL
|
|
146
159
|
))
|
|
147
160
|
|
|
161
|
+
# v4.1.0: Multi-language support keywords
|
|
162
|
+
# 'supports' keyword (magenta) - must be before regular keywords
|
|
163
|
+
rules.append(HighlightRule(
|
|
164
|
+
pattern=r'\bsupports\b',
|
|
165
|
+
category=TokenCategory.SUPPORTS_KW
|
|
166
|
+
))
|
|
167
|
+
|
|
168
|
+
# 'libinclude' keyword (yellow/gold)
|
|
169
|
+
rules.append(HighlightRule(
|
|
170
|
+
pattern=r'\blibinclude\b',
|
|
171
|
+
category=TokenCategory.LIBINCLUDE_KW
|
|
172
|
+
))
|
|
173
|
+
|
|
174
|
+
# v4.1.0: Language$Instance patterns (cpp$ClassName, py$Object)
|
|
175
|
+
# Match language prefix before $ (cyan)
|
|
176
|
+
rules.append(HighlightRule(
|
|
177
|
+
pattern=r'\b(cpp|py|python|java|csharp|js|javascript)\$',
|
|
178
|
+
category=TokenCategory.LANG_PREFIX,
|
|
179
|
+
group=1
|
|
180
|
+
))
|
|
181
|
+
# Match instance name after $ (orange)
|
|
182
|
+
rules.append(HighlightRule(
|
|
183
|
+
pattern=r'\b(?:cpp|py|python|java|csharp|js|javascript)\$([A-Za-z_][A-Za-z0-9_]*)',
|
|
184
|
+
category=TokenCategory.LANG_INSTANCE,
|
|
185
|
+
group=1
|
|
186
|
+
))
|
|
187
|
+
|
|
148
188
|
# Self-references (s@Name, s@Backend.Loop)
|
|
149
189
|
rules.append(HighlightRule(
|
|
150
190
|
pattern=r's@[A-Za-z_][A-Za-z0-9_]*(?:\.[A-Za-z_][A-Za-z0-9_]*)*',
|
|
@@ -233,6 +273,11 @@ class ColorScheme:
|
|
|
233
273
|
TokenCategory.NULL: '#ff6464', # Red
|
|
234
274
|
TokenCategory.PACKAGE_KW: '#bd93f9', # Purple for package - NEW
|
|
235
275
|
TokenCategory.TYPE_LITERAL: '#8be9fd', # Cyan for type literals - NEW
|
|
276
|
+
# v4.1.0: Multi-language support colors
|
|
277
|
+
TokenCategory.SUPPORTS_KW: '#ff79c6', # Magenta/Pink for 'supports'
|
|
278
|
+
TokenCategory.LIBINCLUDE_KW: '#f1fa8c',# Yellow/Gold for 'libinclude'
|
|
279
|
+
TokenCategory.LANG_PREFIX: '#8be9fd', # Cyan for language prefix (cpp$)
|
|
280
|
+
TokenCategory.LANG_INSTANCE: '#ffb86c',# Orange for instance name ($ClassName)
|
|
236
281
|
}
|
|
237
282
|
|
|
238
283
|
# Light theme variant
|
|
@@ -252,6 +297,11 @@ class ColorScheme:
|
|
|
252
297
|
TokenCategory.NULL: '#ff0000', # Red
|
|
253
298
|
TokenCategory.PACKAGE_KW: '#8b008b', # DarkMagenta for package - NEW
|
|
254
299
|
TokenCategory.TYPE_LITERAL: '#008b8b', # Dark cyan for type literals - NEW
|
|
300
|
+
# v4.1.0: Multi-language support colors
|
|
301
|
+
TokenCategory.SUPPORTS_KW: '#d63384', # Dark Magenta for 'supports'
|
|
302
|
+
TokenCategory.LIBINCLUDE_KW: '#b8860b',# DarkGoldenrod for 'libinclude'
|
|
303
|
+
TokenCategory.LANG_PREFIX: '#0d6efd', # Blue for language prefix (cpp$)
|
|
304
|
+
TokenCategory.LANG_INSTANCE: '#fd7e14',# Orange for instance name ($ClassName)
|
|
255
305
|
}
|
|
256
306
|
|
|
257
307
|
|
|
@@ -334,6 +384,11 @@ def highlight_cssl_ansi(source: str) -> str:
|
|
|
334
384
|
TokenCategory.NULL: '\033[91m', # Red
|
|
335
385
|
TokenCategory.PACKAGE_KW: '\033[95m', # Magenta for package - NEW
|
|
336
386
|
TokenCategory.TYPE_LITERAL: '\033[96m', # Cyan for type literals - NEW
|
|
387
|
+
# v4.1.0: Multi-language support colors
|
|
388
|
+
TokenCategory.SUPPORTS_KW: '\033[95m', # Magenta for 'supports'
|
|
389
|
+
TokenCategory.LIBINCLUDE_KW: '\033[93m',# Yellow for 'libinclude'
|
|
390
|
+
TokenCategory.LANG_PREFIX: '\033[96m', # Cyan for language prefix (cpp$)
|
|
391
|
+
TokenCategory.LANG_INSTANCE: '\033[33m',# Orange/Yellow for instance name
|
|
337
392
|
}
|
|
338
393
|
RESET = '\033[0m'
|
|
339
394
|
|
|
@@ -439,6 +494,10 @@ def export_textmate_grammar() -> dict:
|
|
|
439
494
|
"name": "comment.line.cssl",
|
|
440
495
|
"match": "#.*$"
|
|
441
496
|
},
|
|
497
|
+
{
|
|
498
|
+
"name": "comment.line.double-slash.cssl",
|
|
499
|
+
"match": "//.*$"
|
|
500
|
+
},
|
|
442
501
|
{
|
|
443
502
|
"name": "string.quoted.double.cssl",
|
|
444
503
|
"match": '"(?:[^"\\\\]|\\\\.)*"'
|
|
@@ -447,6 +506,23 @@ def export_textmate_grammar() -> dict:
|
|
|
447
506
|
"name": "string.quoted.single.cssl",
|
|
448
507
|
"match": "'(?:[^'\\\\]|\\\\.)*'"
|
|
449
508
|
},
|
|
509
|
+
# v4.1.0: Multi-language support
|
|
510
|
+
{
|
|
511
|
+
"name": "keyword.control.supports.cssl",
|
|
512
|
+
"match": "\\bsupports\\b"
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
"name": "support.function.libinclude.cssl",
|
|
516
|
+
"match": "\\blibinclude\\b"
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
"name": "variable.language.lang-instance.cssl",
|
|
520
|
+
"match": "\\b(cpp|py|python|java|csharp|js|javascript)\\$([A-Za-z_][A-Za-z0-9_]*)",
|
|
521
|
+
"captures": {
|
|
522
|
+
"1": {"name": "entity.name.type.language.cssl"},
|
|
523
|
+
"2": {"name": "variable.other.instance.cssl"}
|
|
524
|
+
}
|
|
525
|
+
},
|
|
450
526
|
{
|
|
451
527
|
"name": "variable.other.self-reference.cssl",
|
|
452
528
|
"match": "s@[A-Za-z_][A-Za-z0-9_]*(?:\\.[A-Za-z_][A-Za-z0-9_]*)*"
|
|
@@ -455,9 +531,13 @@ def export_textmate_grammar() -> dict:
|
|
|
455
531
|
"name": "variable.other.module-reference.cssl",
|
|
456
532
|
"match": "@[A-Za-z_][A-Za-z0-9_]*(?:\\.[A-Za-z_][A-Za-z0-9_]*)*"
|
|
457
533
|
},
|
|
534
|
+
{
|
|
535
|
+
"name": "keyword.other.package.cssl",
|
|
536
|
+
"match": "\\b(package|package-includes)\\b"
|
|
537
|
+
},
|
|
458
538
|
{
|
|
459
539
|
"name": "keyword.control.cssl",
|
|
460
|
-
"match": "\\b(service-init|service-run|service-include|struct|define|if|else|elif|while|for|foreach|in|switch|case|default|break|continue|return|try|catch|await)\\b"
|
|
540
|
+
"match": "\\b(service-init|service-run|service-include|struct|define|class|constr|if|else|elif|while|for|foreach|in|switch|case|default|break|continue|return|try|catch|finally|throw|await|extends|overwrites|global|as|exec)\\b"
|
|
461
541
|
},
|
|
462
542
|
{
|
|
463
543
|
"name": "keyword.operator.cssl",
|
|
@@ -465,7 +545,7 @@ def export_textmate_grammar() -> dict:
|
|
|
465
545
|
},
|
|
466
546
|
{
|
|
467
547
|
"name": "constant.language.cssl",
|
|
468
|
-
"match": "\\b(True|False|true|false|null|None)\\b"
|
|
548
|
+
"match": "\\b(True|False|true|false|null|None|none)\\b"
|
|
469
549
|
},
|
|
470
550
|
{
|
|
471
551
|
"name": "constant.numeric.cssl",
|
|
@@ -473,7 +553,11 @@ def export_textmate_grammar() -> dict:
|
|
|
473
553
|
},
|
|
474
554
|
{
|
|
475
555
|
"name": "keyword.operator.assignment.cssl",
|
|
476
|
-
"match": "
|
|
556
|
+
"match": "<==|==>|->|<-|::"
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
"name": "support.type.cssl",
|
|
560
|
+
"match": "\\b(list|dict)\\b(?!\\s*\\()"
|
|
477
561
|
}
|
|
478
562
|
]
|
|
479
563
|
}
|
|
@@ -1648,6 +1648,7 @@ class UniversalInstance:
|
|
|
1648
1648
|
self._members: Dict[str, Any] = {}
|
|
1649
1649
|
self._methods: Dict[str, Any] = {} # Method name -> AST node or callable
|
|
1650
1650
|
self._injections: List[Any] = [] # Code blocks injected via +<<==
|
|
1651
|
+
self._runtime = None # Weak reference to CSSL runtime for method calls
|
|
1651
1652
|
# Register globally
|
|
1652
1653
|
UniversalInstance._registry[name] = self
|
|
1653
1654
|
|
|
@@ -1707,9 +1708,16 @@ class UniversalInstance:
|
|
|
1707
1708
|
"""Check if member exists."""
|
|
1708
1709
|
return name in self._members
|
|
1709
1710
|
|
|
1710
|
-
def
|
|
1711
|
+
def set_runtime(self, runtime: Any) -> None:
|
|
1712
|
+
"""Set the runtime reference for method calls from Python."""
|
|
1713
|
+
import weakref
|
|
1714
|
+
self._runtime = weakref.ref(runtime)
|
|
1715
|
+
|
|
1716
|
+
def set_method(self, name: str, method: Any, runtime: Any = None) -> None:
|
|
1711
1717
|
"""Set a method (AST node or callable)."""
|
|
1712
1718
|
self._methods[name] = method
|
|
1719
|
+
if runtime is not None and self._runtime is None:
|
|
1720
|
+
self.set_runtime(runtime)
|
|
1713
1721
|
|
|
1714
1722
|
def get_method(self, name: str) -> Any:
|
|
1715
1723
|
"""Get a method by name."""
|
|
@@ -1744,7 +1752,28 @@ class UniversalInstance:
|
|
|
1744
1752
|
if name in object.__getattribute__(self, '_members'):
|
|
1745
1753
|
return object.__getattribute__(self, '_members')[name]
|
|
1746
1754
|
if name in object.__getattribute__(self, '_methods'):
|
|
1747
|
-
|
|
1755
|
+
method = object.__getattribute__(self, '_methods')[name]
|
|
1756
|
+
runtime_ref = object.__getattribute__(self, '_runtime')
|
|
1757
|
+
|
|
1758
|
+
# If method is an AST node and we have a runtime, create a callable wrapper
|
|
1759
|
+
if hasattr(method, 'type') and method.type == 'function' and runtime_ref is not None:
|
|
1760
|
+
runtime = runtime_ref() # Dereference weakref
|
|
1761
|
+
if runtime is not None:
|
|
1762
|
+
instance = self
|
|
1763
|
+
def method_caller(*args, **kwargs):
|
|
1764
|
+
# Set 'this' context and call the method
|
|
1765
|
+
old_this = runtime.scope.get('this')
|
|
1766
|
+
runtime.scope.set('this', instance)
|
|
1767
|
+
try:
|
|
1768
|
+
return runtime._call_function(method, list(args))
|
|
1769
|
+
finally:
|
|
1770
|
+
if old_this is not None:
|
|
1771
|
+
runtime.scope.set('this', old_this)
|
|
1772
|
+
elif hasattr(runtime.scope, 'remove'):
|
|
1773
|
+
runtime.scope.remove('this')
|
|
1774
|
+
return method_caller
|
|
1775
|
+
# Return method directly if already callable or no runtime
|
|
1776
|
+
return method
|
|
1748
1777
|
raise AttributeError(f"Instance '{object.__getattribute__(self, '_name')}' has no attribute '{name}'")
|
|
1749
1778
|
|
|
1750
1779
|
def __setattr__(self, name: str, value: Any) -> None:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: IncludeCPP
|
|
3
|
-
Version: 4.0
|
|
3
|
+
Version: 4.1.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
|
|
@@ -906,3 +906,103 @@ print(greeter.name) # "Python"
|
|
|
906
906
|
- `python::export(instance)` - Alias
|
|
907
907
|
|
|
908
908
|
All three do the same thing: wrap a CSSL class instance for Python use.
|
|
909
|
+
|
|
910
|
+
## Universal Instances (v4.0.3+)
|
|
911
|
+
|
|
912
|
+
Universal instances are shared containers accessible from CSSL, Python, and C++:
|
|
913
|
+
|
|
914
|
+
```python
|
|
915
|
+
from includecpp import CSSL
|
|
916
|
+
|
|
917
|
+
cssl = CSSL.CsslLang()
|
|
918
|
+
|
|
919
|
+
# Create in CSSL
|
|
920
|
+
cssl.run('''
|
|
921
|
+
instance<"myContainer"> container;
|
|
922
|
+
container.data = "Hello";
|
|
923
|
+
container.count = 42;
|
|
924
|
+
''')
|
|
925
|
+
|
|
926
|
+
# Access from Python
|
|
927
|
+
container = cssl.getInstance("myContainer")
|
|
928
|
+
print(container.data) # "Hello"
|
|
929
|
+
print(container.count) # 42
|
|
930
|
+
|
|
931
|
+
# Modify from Python
|
|
932
|
+
container.newValue = "Added from Python"
|
|
933
|
+
|
|
934
|
+
# Changes reflect in CSSL
|
|
935
|
+
cssl.run('''
|
|
936
|
+
instance<"myContainer"> c;
|
|
937
|
+
printl(c.newValue); // "Added from Python"
|
|
938
|
+
''')
|
|
939
|
+
```
|
|
940
|
+
|
|
941
|
+
### Instance Methods
|
|
942
|
+
|
|
943
|
+
```python
|
|
944
|
+
cssl.getInstance("name") # Get instance (None if not found)
|
|
945
|
+
cssl.createInstance("name") # Create or get instance
|
|
946
|
+
cssl.deleteInstance("name") # Delete instance
|
|
947
|
+
cssl.listInstances() # List all instance names
|
|
948
|
+
```
|
|
949
|
+
|
|
950
|
+
### Method Injection
|
|
951
|
+
|
|
952
|
+
Inject methods into instances using `+<<==`:
|
|
953
|
+
|
|
954
|
+
```cssl
|
|
955
|
+
instance<"api"> api;
|
|
956
|
+
|
|
957
|
+
// Inject a method
|
|
958
|
+
api +<<== {
|
|
959
|
+
void greet(string name) {
|
|
960
|
+
printl("Hello, " + name + "!");
|
|
961
|
+
}
|
|
962
|
+
};
|
|
963
|
+
|
|
964
|
+
api.greet("World"); // Hello, World!
|
|
965
|
+
```
|
|
966
|
+
|
|
967
|
+
## Simplified Module API (v4.0.2+)
|
|
968
|
+
|
|
969
|
+
Create CSSL modules from files with payload binding:
|
|
970
|
+
|
|
971
|
+
```python
|
|
972
|
+
from includecpp import CSSL
|
|
973
|
+
|
|
974
|
+
# Register payload from file
|
|
975
|
+
CSSL.makepayload("api", "lib/api/myapi.cssl-pl")
|
|
976
|
+
|
|
977
|
+
# Create module from file, binding to payload
|
|
978
|
+
mod = CSSL.makemodule("writer", "lib/writer.cssl", bind="api")
|
|
979
|
+
mod.SaySomething("Hello!") # Call functions directly
|
|
980
|
+
```
|
|
981
|
+
|
|
982
|
+
## VSCode Extension
|
|
983
|
+
|
|
984
|
+
IncludeCPP includes a VSCode extension for CSSL syntax highlighting.
|
|
985
|
+
|
|
986
|
+
### Installation
|
|
987
|
+
|
|
988
|
+
```bash
|
|
989
|
+
# Copy extension to VSCode extensions folder
|
|
990
|
+
# Windows: %USERPROFILE%\.vscode\extensions\
|
|
991
|
+
# Linux/Mac: ~/.vscode/extensions/
|
|
992
|
+
|
|
993
|
+
# Or install from included files
|
|
994
|
+
pip show includecpp # Find package location
|
|
995
|
+
# Copy vscode/cssl folder to extensions
|
|
996
|
+
```
|
|
997
|
+
|
|
998
|
+
### Features
|
|
999
|
+
|
|
1000
|
+
- Syntax highlighting for `.cssl`, `.cssl-pl`, `.cssl-mod` files
|
|
1001
|
+
- Snippets for common patterns
|
|
1002
|
+
- Run CSSL files with F5
|
|
1003
|
+
- Proper coloring for:
|
|
1004
|
+
- Keywords and control flow
|
|
1005
|
+
- Data types (purple/lilac)
|
|
1006
|
+
- Variable declarations (light blue)
|
|
1007
|
+
- Injection operators (`<<==`, `<==`)
|
|
1008
|
+
- Global (`@`), shared (`$`), and captured (`%`) references
|
|
@@ -1,15 +1,16 @@
|
|
|
1
|
-
includecpp/__init__.py,sha256=
|
|
2
|
-
includecpp/__init__.pyi,sha256=
|
|
1
|
+
includecpp/__init__.py,sha256=CeuKmNBL9kUvu3m-ok8wdrkSZmN9HfQIhNvrD0ItZaQ,1672
|
|
2
|
+
includecpp/__init__.pyi,sha256=wNS6JDQ_9pxifa1PzvXCVHWSfHZqUIc0n9Nm_eO4h-U,7236
|
|
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=Vc92NvT76osV71NhW1OonT9GRlI4i6hp9AoCoClxh_g,350236
|
|
7
7
|
includecpp/cli/config_parser.py,sha256=KveeYUg2TA9sC5hKVzYYfgdNm2WfLG5y7_yxgBWn9yM,4886
|
|
8
8
|
includecpp/core/__init__.py,sha256=L1bT6oikTjdto-6Px7DpjePtM07ymo3Bnov1saZzsGg,390
|
|
9
|
-
includecpp/core/ai_integration.py,sha256=
|
|
9
|
+
includecpp/core/ai_integration.py,sha256=Q44Y1SD_4yXETO4AwtoR51QnX0T4Tc14_Ux9VozQJhQ,89146
|
|
10
10
|
includecpp/core/build_manager.py,sha256=uLuYsuiC6OsOGaU5wAJfl4M3IbdnIDgogfMd8VsVpq8,102866
|
|
11
11
|
includecpp/core/cpp_api.py,sha256=8y_B1L18rhSBZln654xPPzqO2PdvAlLpJrfEjzl7Wnc,14039
|
|
12
12
|
includecpp/core/cpp_api.pyi,sha256=IEiaKqaPItnn6rjL7aK32D3o9FYmRYCgCZbqiQNUwdc,3496
|
|
13
|
+
includecpp/core/cpp_api_extensions.pyi,sha256=piCUrKjyUCLTpZb4yK1UUU9XeApeqUa6y36ICQui8mI,19346
|
|
13
14
|
includecpp/core/cppy_converter.py,sha256=b7yqu-aoa0wShNY0GvQT67TnNhYya4GyYmG7oDdqDV4,156686
|
|
14
15
|
includecpp/core/cssl_bridge.py,sha256=xYfIRagegO8irdWl97dfanRB1qLU80p9lQ2wxkttGQ4,49963
|
|
15
16
|
includecpp/core/cssl_bridge.pyi,sha256=nreh2gtK94I6VFrzTWcYVUHN97wcYQF0dY_-HySi7yQ,28787
|
|
@@ -19,17 +20,18 @@ includecpp/core/exceptions.py,sha256=szeF4qdzi_q8hBBZi7mJxkliyQ0crplkLYe0ymlBGtk
|
|
|
19
20
|
includecpp/core/path_discovery.py,sha256=jI0oSq6Hsd4LKXmU4dOiGSrXcEO_KWMXfQ5_ylBmXvU,2561
|
|
20
21
|
includecpp/core/project_ui.py,sha256=la2EQZKmUkJGuJxnbs09hH1ZhBh9bfndo6okzZsk2dQ,141134
|
|
21
22
|
includecpp/core/settings_ui.py,sha256=B2SlwgdplF2KiBk5UYf2l8Jjifjd0F-FmBP0DPsVCEQ,11798
|
|
22
|
-
includecpp/core/cssl/CSSL_DOCUMENTATION.md,sha256=
|
|
23
|
+
includecpp/core/cssl/CSSL_DOCUMENTATION.md,sha256=IGamn2Z_KXXnK9gzNtl7_UG5D9jR25N_VmKXsgyFqTg,36835
|
|
23
24
|
includecpp/core/cssl/CSSL_DOCUMENTATION_NEW.md,sha256=I_bVeKWlbcgHYkl2o9L2vk3r5sDvG44bGh__RJIYduw,28222
|
|
24
25
|
includecpp/core/cssl/__init__.py,sha256=scDXRBNK2L6A8qmlpNyaqQj6BFcSfPInBlucdeNfMF0,1975
|
|
25
|
-
includecpp/core/cssl/cssl_builtins.py,sha256=
|
|
26
|
+
includecpp/core/cssl/cssl_builtins.py,sha256=3pB3jSHwloNWlIVxD4phZdOkde6YlzloxgBxf5UVmC4,108456
|
|
26
27
|
includecpp/core/cssl/cssl_builtins.pyi,sha256=-yr9JbxHKFv9Vc1iufChcqCQvNQLL3-Ow_Hgg0YwQnc,135180
|
|
27
28
|
includecpp/core/cssl/cssl_events.py,sha256=nupIcXW_Vjdud7zCU6hdwkQRQ0MujlPM7Tk2u7eDAiY,21013
|
|
29
|
+
includecpp/core/cssl/cssl_languages.py,sha256=2vKi_isbCp6Er5r2mnRCbNnJv7WLl3p0cPHvKK6Aypk,28328
|
|
28
30
|
includecpp/core/cssl/cssl_modules.py,sha256=cUg0-zdymMnWWTsA_BUrW5dx4R04dHpKcUhm-Wfiwwo,103006
|
|
29
|
-
includecpp/core/cssl/cssl_parser.py,sha256=
|
|
30
|
-
includecpp/core/cssl/cssl_runtime.py,sha256=
|
|
31
|
-
includecpp/core/cssl/cssl_syntax.py,sha256=
|
|
32
|
-
includecpp/core/cssl/cssl_types.py,sha256=
|
|
31
|
+
includecpp/core/cssl/cssl_parser.py,sha256=2JWUbPNdIt9hnG-3jki5-0sMeH1RlDWoPix_c0p6ny0,159942
|
|
32
|
+
includecpp/core/cssl/cssl_runtime.py,sha256=A7zPiEXdPDmCNp0zw8F2Tu2-JDK20YgPuLlo_Pz4IrE,225250
|
|
33
|
+
includecpp/core/cssl/cssl_syntax.py,sha256=AcFvqCB9WKitNA32izCWf5jeFWNc6ncc-xLw0J5UjBg,20933
|
|
34
|
+
includecpp/core/cssl/cssl_types.py,sha256=Vs61dnMh8iUxVu7LPz8HM-XyojuQptykkedlVA3J2Bc,60031
|
|
33
35
|
includecpp/generator/__init__.py,sha256=Rsy41bwimaEloD3gDRR_znPfIJzIsCFuWZgCTJBLJlc,62
|
|
34
36
|
includecpp/generator/parser.cpp,sha256=hbhHdtFH65rzp6prnARN9pNFF_ssr0NseVVcxq0fJh4,76833
|
|
35
37
|
includecpp/generator/parser.h,sha256=EDm0b-pEesIIIQQ2PvH5h2qwlqJU9BH8SiMV7MWbsTo,11073
|
|
@@ -45,9 +47,9 @@ includecpp/vscode/cssl/images/cssl.png,sha256=BxAGsnfS0ZzzCvqV6Zb1OAJAZpDUoXlR86
|
|
|
45
47
|
includecpp/vscode/cssl/images/cssl_pl.png,sha256=z4WMk7g6YCTbUUbSFk343BO6yi_OmNEVYkRenWGydwM,799
|
|
46
48
|
includecpp/vscode/cssl/snippets/cssl.snippets.json,sha256=uV3nHJyQ5f7Pr3FzfbQT2VZOEY3AlGs4wrmqe884jm4,37372
|
|
47
49
|
includecpp/vscode/cssl/syntaxes/cssl.tmLanguage.json,sha256=nYy7aRWREcgCu9Jbx5QmtQHfD4WRlk-HkPhqzKVtoIA,42806
|
|
48
|
-
includecpp-4.0.
|
|
49
|
-
includecpp-4.0.
|
|
50
|
-
includecpp-4.0.
|
|
51
|
-
includecpp-4.0.
|
|
52
|
-
includecpp-4.0.
|
|
53
|
-
includecpp-4.0.
|
|
50
|
+
includecpp-4.1.0.dist-info/licenses/LICENSE,sha256=fWCsGGsiWZir0UzDd20Hh-3wtRyk1zqUntvtVuAWhvc,1093
|
|
51
|
+
includecpp-4.1.0.dist-info/METADATA,sha256=JS3RfDPNOc32h3iqSXfRKvEXhPGV6rAzTwD5LcseghI,24887
|
|
52
|
+
includecpp-4.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
53
|
+
includecpp-4.1.0.dist-info/entry_points.txt,sha256=6A5Mif9gi0139Bf03W5plAb3wnAgbNaEVe1HJoGE-2o,59
|
|
54
|
+
includecpp-4.1.0.dist-info/top_level.txt,sha256=RFUaR1KG-M6mCYwP6w4ydP5Cgc8yNbP78jxGAvyjMa8,11
|
|
55
|
+
includecpp-4.1.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|