IncludeCPP 3.3.11__py3-none-any.whl → 3.4.2__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.
@@ -0,0 +1,40 @@
1
+ """
2
+ CSSL - CSO Service Script Language
3
+ Bundled with IncludeCPP for integrated scripting support.
4
+
5
+ Features:
6
+ - BruteForce Injection System: <==, ==>, +<==, -<==, <<==, ==>>
7
+ - Dynamic typing with 'dynamic' keyword
8
+ - Function modifiers: undefined, open, meta, super, closed, private, virtual
9
+ - Advanced data types: datastruct, shuffled, iterator, combo, dataspace
10
+ - Injection helpers: string::where, json::key, array::index, etc.
11
+ - Global references: @Name, r@Name, s@Name
12
+ """
13
+
14
+ from .cssl_parser import (
15
+ parse_cssl, parse_cssl_program, tokenize_cssl,
16
+ CSSLSyntaxError, CSSLLexer, CSSLParser, ASTNode,
17
+ KEYWORDS, TYPE_GENERICS, INJECTION_HELPERS
18
+ )
19
+ from .cssl_runtime import CSSLRuntime, CSSLRuntimeError, CSSLServiceRunner, run_cssl, run_cssl_file
20
+ from .cssl_types import (
21
+ DataStruct, Shuffled, Iterator, Combo, DataSpace, OpenQuote,
22
+ OpenFind,
23
+ create_datastruct, create_shuffled, create_iterator,
24
+ create_combo, create_dataspace, create_openquote
25
+ )
26
+
27
+ __all__ = [
28
+ # Parser
29
+ 'parse_cssl', 'parse_cssl_program', 'tokenize_cssl',
30
+ 'CSSLSyntaxError', 'CSSLLexer', 'CSSLParser', 'ASTNode',
31
+ 'KEYWORDS', 'TYPE_GENERICS', 'INJECTION_HELPERS',
32
+ # Runtime
33
+ 'CSSLRuntime', 'CSSLRuntimeError', 'CSSLServiceRunner',
34
+ 'run_cssl', 'run_cssl_file',
35
+ # Data Types
36
+ 'DataStruct', 'Shuffled', 'Iterator', 'Combo', 'DataSpace', 'OpenQuote',
37
+ 'OpenFind',
38
+ 'create_datastruct', 'create_shuffled', 'create_iterator',
39
+ 'create_combo', 'create_dataspace', 'create_openquote'
40
+ ]