zexus 1.7.1 → 1.7.2
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.
- package/README.md +3 -3
- package/package.json +1 -1
- package/src/__init__.py +7 -0
- package/src/zexus/__init__.py +1 -1
- package/src/zexus/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/zexus/__pycache__/capability_system.cpython-312.pyc +0 -0
- package/src/zexus/__pycache__/debug_sanitizer.cpython-312.pyc +0 -0
- package/src/zexus/__pycache__/environment.cpython-312.pyc +0 -0
- package/src/zexus/__pycache__/error_reporter.cpython-312.pyc +0 -0
- package/src/zexus/__pycache__/input_validation.cpython-312.pyc +0 -0
- package/src/zexus/__pycache__/lexer.cpython-312.pyc +0 -0
- package/src/zexus/__pycache__/module_cache.cpython-312.pyc +0 -0
- package/src/zexus/__pycache__/module_manager.cpython-312.pyc +0 -0
- package/src/zexus/__pycache__/object.cpython-312.pyc +0 -0
- package/src/zexus/__pycache__/security.cpython-312.pyc +0 -0
- package/src/zexus/__pycache__/security_enforcement.cpython-312.pyc +0 -0
- package/src/zexus/__pycache__/syntax_validator.cpython-312.pyc +0 -0
- package/src/zexus/__pycache__/zexus_ast.cpython-312.pyc +0 -0
- package/src/zexus/__pycache__/zexus_token.cpython-312.pyc +0 -0
- package/src/zexus/access_control_system/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/zexus/access_control_system/__pycache__/access_control.cpython-312.pyc +0 -0
- package/src/zexus/advanced_types.py +17 -2
- package/src/zexus/blockchain/__init__.py +411 -0
- package/src/zexus/blockchain/accelerator.py +1160 -0
- package/src/zexus/blockchain/chain.py +660 -0
- package/src/zexus/blockchain/consensus.py +821 -0
- package/src/zexus/blockchain/contract_vm.py +1019 -0
- package/src/zexus/blockchain/crypto.py +79 -14
- package/src/zexus/blockchain/events.py +526 -0
- package/src/zexus/blockchain/loadtest.py +721 -0
- package/src/zexus/blockchain/monitoring.py +350 -0
- package/src/zexus/blockchain/mpt.py +716 -0
- package/src/zexus/blockchain/multichain.py +951 -0
- package/src/zexus/blockchain/multiprocess_executor.py +338 -0
- package/src/zexus/blockchain/network.py +886 -0
- package/src/zexus/blockchain/node.py +666 -0
- package/src/zexus/blockchain/rpc.py +1203 -0
- package/src/zexus/blockchain/rust_bridge.py +421 -0
- package/src/zexus/blockchain/storage.py +423 -0
- package/src/zexus/blockchain/tokens.py +750 -0
- package/src/zexus/blockchain/upgradeable.py +1004 -0
- package/src/zexus/blockchain/verification.py +1602 -0
- package/src/zexus/blockchain/wallet.py +621 -0
- package/src/zexus/cli/__pycache__/main.cpython-312.pyc +0 -0
- package/src/zexus/cli/main.py +300 -20
- package/src/zexus/cli/zpm.py +1 -1
- package/src/zexus/compiler/__pycache__/bytecode.cpython-312.pyc +0 -0
- package/src/zexus/compiler/__pycache__/lexer.cpython-312.pyc +0 -0
- package/src/zexus/compiler/__pycache__/parser.cpython-312.pyc +0 -0
- package/src/zexus/compiler/__pycache__/semantic.cpython-312.pyc +0 -0
- package/src/zexus/compiler/__pycache__/zexus_ast.cpython-312.pyc +0 -0
- package/src/zexus/compiler/lexer.py +10 -5
- package/src/zexus/concurrency_system.py +79 -0
- package/src/zexus/config.py +54 -0
- package/src/zexus/crypto_bridge.py +244 -8
- package/src/zexus/dap/__init__.py +10 -0
- package/src/zexus/dap/__main__.py +4 -0
- package/src/zexus/dap/dap_server.py +391 -0
- package/src/zexus/dap/debug_engine.py +298 -0
- package/src/zexus/environment.py +10 -1
- package/src/zexus/evaluator/__pycache__/bytecode_compiler.cpython-312.pyc +0 -0
- package/src/zexus/evaluator/__pycache__/core.cpython-312.pyc +0 -0
- package/src/zexus/evaluator/__pycache__/expressions.cpython-312.pyc +0 -0
- package/src/zexus/evaluator/__pycache__/functions.cpython-312.pyc +0 -0
- package/src/zexus/evaluator/__pycache__/resource_limiter.cpython-312.pyc +0 -0
- package/src/zexus/evaluator/__pycache__/statements.cpython-312.pyc +0 -0
- package/src/zexus/evaluator/__pycache__/unified_execution.cpython-312.pyc +0 -0
- package/src/zexus/evaluator/__pycache__/utils.cpython-312.pyc +0 -0
- package/src/zexus/evaluator/bytecode_compiler.py +441 -37
- package/src/zexus/evaluator/core.py +560 -49
- package/src/zexus/evaluator/expressions.py +122 -49
- package/src/zexus/evaluator/functions.py +417 -16
- package/src/zexus/evaluator/statements.py +521 -118
- package/src/zexus/evaluator/unified_execution.py +573 -72
- package/src/zexus/evaluator/utils.py +14 -2
- package/src/zexus/event_loop.py +186 -0
- package/src/zexus/lexer.py +742 -486
- package/src/zexus/lsp/__init__.py +1 -1
- package/src/zexus/lsp/definition_provider.py +163 -9
- package/src/zexus/lsp/server.py +22 -8
- package/src/zexus/lsp/symbol_provider.py +182 -9
- package/src/zexus/module_cache.py +237 -9
- package/src/zexus/object.py +64 -6
- package/src/zexus/parser/__pycache__/parser.cpython-312.pyc +0 -0
- package/src/zexus/parser/__pycache__/strategy_context.cpython-312.pyc +0 -0
- package/src/zexus/parser/__pycache__/strategy_structural.cpython-312.pyc +0 -0
- package/src/zexus/parser/parser.py +786 -285
- package/src/zexus/parser/strategy_context.py +407 -66
- package/src/zexus/parser/strategy_structural.py +117 -19
- package/src/zexus/persistence.py +15 -1
- package/src/zexus/renderer/__init__.py +15 -0
- package/src/zexus/renderer/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/zexus/renderer/__pycache__/backend.cpython-312.pyc +0 -0
- package/src/zexus/renderer/__pycache__/canvas.cpython-312.pyc +0 -0
- package/src/zexus/renderer/__pycache__/color_system.cpython-312.pyc +0 -0
- package/src/zexus/renderer/__pycache__/layout.cpython-312.pyc +0 -0
- package/src/zexus/renderer/__pycache__/main_renderer.cpython-312.pyc +0 -0
- package/src/zexus/renderer/__pycache__/painter.cpython-312.pyc +0 -0
- package/src/zexus/renderer/tk_backend.py +208 -0
- package/src/zexus/renderer/web_backend.py +260 -0
- package/src/zexus/runtime/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/zexus/runtime/__pycache__/async_runtime.cpython-312.pyc +0 -0
- package/src/zexus/runtime/__pycache__/load_manager.cpython-312.pyc +0 -0
- package/src/zexus/runtime/file_flags.py +137 -0
- package/src/zexus/safety/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/zexus/safety/__pycache__/memory_safety.cpython-312.pyc +0 -0
- package/src/zexus/security.py +424 -34
- package/src/zexus/stdlib/fs.py +23 -18
- package/src/zexus/stdlib/http.py +289 -186
- package/src/zexus/stdlib/sockets.py +207 -163
- package/src/zexus/stdlib/websockets.py +282 -0
- package/src/zexus/stdlib_integration.py +369 -2
- package/src/zexus/strategy_recovery.py +6 -3
- package/src/zexus/type_checker.py +423 -0
- package/src/zexus/virtual_filesystem.py +189 -2
- package/src/zexus/vm/__init__.py +113 -3
- package/src/zexus/vm/__pycache__/async_optimizer.cpython-312.pyc +0 -0
- package/src/zexus/vm/__pycache__/bytecode.cpython-312.pyc +0 -0
- package/src/zexus/vm/__pycache__/bytecode_converter.cpython-312.pyc +0 -0
- package/src/zexus/vm/__pycache__/cache.cpython-312.pyc +0 -0
- package/src/zexus/vm/__pycache__/compiler.cpython-312.pyc +0 -0
- package/src/zexus/vm/__pycache__/gas_metering.cpython-312.pyc +0 -0
- package/src/zexus/vm/__pycache__/jit.cpython-312.pyc +0 -0
- package/src/zexus/vm/__pycache__/parallel_vm.cpython-312.pyc +0 -0
- package/src/zexus/vm/__pycache__/vm.cpython-312.pyc +0 -0
- package/src/zexus/vm/async_optimizer.py +14 -1
- package/src/zexus/vm/binary_bytecode.py +659 -0
- package/src/zexus/vm/bytecode.py +28 -1
- package/src/zexus/vm/bytecode_converter.py +26 -12
- package/src/zexus/vm/cabi.c +1985 -0
- package/src/zexus/vm/cabi.cpython-312-x86_64-linux-gnu.so +0 -0
- package/src/zexus/vm/cabi.h +127 -0
- package/src/zexus/vm/cache.py +557 -17
- package/src/zexus/vm/compiler.py +703 -5
- package/src/zexus/vm/fastops.c +15743 -0
- package/src/zexus/vm/fastops.cpython-312-x86_64-linux-gnu.so +0 -0
- package/src/zexus/vm/fastops.pyx +288 -0
- package/src/zexus/vm/gas_metering.py +50 -9
- package/src/zexus/vm/jit.py +83 -2
- package/src/zexus/vm/native_jit_backend.py +1816 -0
- package/src/zexus/vm/native_runtime.cpp +1388 -0
- package/src/zexus/vm/native_runtime.cpython-312-x86_64-linux-gnu.so +0 -0
- package/src/zexus/vm/optimizer.py +161 -11
- package/src/zexus/vm/parallel_vm.py +118 -42
- package/src/zexus/vm/peephole_optimizer.py +82 -4
- package/src/zexus/vm/profiler.py +38 -18
- package/src/zexus/vm/register_allocator.py +16 -5
- package/src/zexus/vm/register_vm.py +8 -5
- package/src/zexus/vm/vm.py +3411 -573
- package/src/zexus/vm/wasm_compiler.py +658 -0
- package/src/zexus/zexus_ast.py +63 -11
- package/src/zexus/zexus_token.py +13 -5
- package/src/zexus/zpm/installer.py +55 -15
- package/src/zexus/zpm/package_manager.py +1 -1
- package/src/zexus/zpm/registry.py +257 -28
- package/src/zexus.egg-info/PKG-INFO +7 -4
- package/src/zexus.egg-info/SOURCES.txt +116 -9
- package/src/zexus.egg-info/entry_points.txt +1 -0
- package/src/zexus.egg-info/requires.txt +4 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: zexus
|
|
3
|
-
Version: 1.7.
|
|
3
|
+
Version: 1.7.2
|
|
4
4
|
Summary: A modern, security-first programming language with blockchain support
|
|
5
5
|
Home-page: https://github.com/Zaidux/zexus-interpreter
|
|
6
6
|
Author: Zaidux
|
|
@@ -41,6 +41,9 @@ Requires-Dist: mypy>=0.900; extra == "dev"
|
|
|
41
41
|
Provides-Extra: blockchain
|
|
42
42
|
Requires-Dist: web3>=5.0; extra == "blockchain"
|
|
43
43
|
Requires-Dist: eth-account>=0.5; extra == "blockchain"
|
|
44
|
+
Provides-Extra: jit
|
|
45
|
+
Requires-Dist: llvmlite>=0.41.0; extra == "jit"
|
|
46
|
+
Requires-Dist: Cython>=0.29; extra == "jit"
|
|
44
47
|
Dynamic: author
|
|
45
48
|
Dynamic: home-page
|
|
46
49
|
Dynamic: license-file
|
|
@@ -50,7 +53,7 @@ Dynamic: requires-python
|
|
|
50
53
|
|
|
51
54
|
<div align="center">
|
|
52
55
|
|
|
53
|
-

|
|
54
57
|
[](LICENSE)
|
|
55
58
|
[](https://python.org)
|
|
56
59
|
[](https://github.com/Zaidux/zexus-interpreter)
|
|
@@ -115,9 +118,9 @@ Zexus is a next-generation, general-purpose programming language designed for se
|
|
|
115
118
|
|
|
116
119
|
---
|
|
117
120
|
|
|
118
|
-
## 🎉 What's New in v1.7.
|
|
121
|
+
## 🎉 What's New in v1.7.2
|
|
119
122
|
|
|
120
|
-
### Latest Features (v1.7.
|
|
123
|
+
### Latest Features (v1.7.2)
|
|
121
124
|
|
|
122
125
|
✅ **FIND Keyword** - Declarative project search that resolves exact module paths with scope filtering and smart suggestions
|
|
123
126
|
✅ **LOAD Keyword & Manager** - Provider-aware configuration loader with built-in ENV, JSON, and YAML support plus caching
|
|
@@ -1,12 +1,18 @@
|
|
|
1
1
|
.gitattributes
|
|
2
2
|
.gitignore
|
|
3
3
|
ADDITIONAL_FIXES_1.6.7.md
|
|
4
|
+
BLOCKCHAIN_MODULE_FULL_SOURCE.md
|
|
4
5
|
CHANGELOG.md
|
|
5
6
|
COMPLETE_FIXES_DOCUMENTATION.md
|
|
7
|
+
CURRENT_ZEXUS.md
|
|
6
8
|
DEMO_ALL_FIXES.zx
|
|
7
9
|
FIX_SUMMARY.md
|
|
8
10
|
LICENSE
|
|
11
|
+
NEXT_STEPS.md
|
|
9
12
|
PARSER_SEMICOLON_FIX.md
|
|
13
|
+
PERFORMANCE_OPTIMIZATION_REPORT.md
|
|
14
|
+
PHASES.md
|
|
15
|
+
PLAN.md
|
|
10
16
|
PUBLISH_TO_NPM.md
|
|
11
17
|
QUICK_START.md
|
|
12
18
|
README.md
|
|
@@ -16,8 +22,11 @@ SECURITY_REMEDIATION_COMPLETE.md
|
|
|
16
22
|
SPEED_RESULTS.md
|
|
17
23
|
SYSTEM_ANALYSIS_FINDINGS.md
|
|
18
24
|
UNIFIED_SYSTEM_COMPLETE.md
|
|
25
|
+
VM_DEEP_DIVE_TRACKING.md
|
|
26
|
+
VM_KEYWORD_SUPPORT_REPORT.md
|
|
19
27
|
VULNERABILITY_FINDINGS.md
|
|
20
28
|
VULNERABILITY_TEST_RESULTS.md
|
|
29
|
+
ZEXUS_BLOCKCHAIN_REFERENCE.md
|
|
21
30
|
any.zx
|
|
22
31
|
check_action_tokens.py
|
|
23
32
|
check_tokens.py
|
|
@@ -32,9 +41,12 @@ demo_simple_working.zx
|
|
|
32
41
|
dynamic.zx
|
|
33
42
|
dynamic_math.zx
|
|
34
43
|
fix_type_checks.py
|
|
44
|
+
full_log.txt
|
|
35
45
|
index.zx
|
|
36
46
|
install.sh
|
|
37
47
|
package.json
|
|
48
|
+
patch_vm.py
|
|
49
|
+
probe_list_debug.txt
|
|
38
50
|
profile_performance.py
|
|
39
51
|
pyproject.toml
|
|
40
52
|
pytest.ini
|
|
@@ -44,19 +56,14 @@ setup.py
|
|
|
44
56
|
setup_stdlib.sh
|
|
45
57
|
shared_config.json
|
|
46
58
|
stress_test_output_full.txt
|
|
47
|
-
test_action_calls.zx
|
|
48
|
-
test_contract_assign.zx
|
|
49
59
|
test_contract_parse.py
|
|
50
60
|
test_data.json
|
|
51
|
-
|
|
52
|
-
test_gas_metering.zx
|
|
53
|
-
test_multiline_parse.zx
|
|
61
|
+
test_hash.zx
|
|
54
62
|
test_parse_assignment.py
|
|
55
|
-
|
|
56
|
-
test_simple_loop.zx
|
|
57
|
-
test_this_keyword.zx
|
|
58
|
-
test_time_builtin.zx
|
|
63
|
+
test_quick_wins.zx
|
|
59
64
|
ultimate_test.zx
|
|
65
|
+
vm_feature_verify.zx
|
|
66
|
+
vm_test_data.txt
|
|
60
67
|
zexus.json
|
|
61
68
|
zpics
|
|
62
69
|
zpm
|
|
@@ -147,6 +154,20 @@ bin/zx
|
|
|
147
154
|
bin/zx-deploy
|
|
148
155
|
bin/zx-dev
|
|
149
156
|
bin/zx-run
|
|
157
|
+
blockchain_demo/address_prefix.zx
|
|
158
|
+
blockchain_demo/dex.zx
|
|
159
|
+
blockchain_demo/governance.zx
|
|
160
|
+
blockchain_demo/main.zx
|
|
161
|
+
blockchain_demo/multichain_bridge.zx
|
|
162
|
+
blockchain_demo/nft.zx
|
|
163
|
+
blockchain_demo/staking.zx
|
|
164
|
+
blockchain_demo/test_import_closure.zx
|
|
165
|
+
blockchain_demo/test_module.zx
|
|
166
|
+
blockchain_demo/test_utils_import.zx
|
|
167
|
+
blockchain_demo/test_utils_import2.zx
|
|
168
|
+
blockchain_demo/token.zx
|
|
169
|
+
blockchain_demo/utils.zx
|
|
170
|
+
blockchain_demo/wallet.zx
|
|
150
171
|
blockchain_test/PARSER_FIX_DATA_DECLARATIONS.md
|
|
151
172
|
blockchain_test/PERFORMANCE_ANALYSIS.md
|
|
152
173
|
blockchain_test/PERFORMANCE_FINAL_REPORT.md
|
|
@@ -165,6 +186,8 @@ blockchain_test/perf_10k_v2.zx
|
|
|
165
186
|
blockchain_test/perf_10k_v3.zx
|
|
166
187
|
blockchain_test/perf_500.zx
|
|
167
188
|
blockchain_test/perf_clean.txt
|
|
189
|
+
blockchain_test/perf_full_network_100.zx
|
|
190
|
+
blockchain_test/perf_full_network_10k.zx
|
|
168
191
|
blockchain_test/perf_quick_100.zx
|
|
169
192
|
blockchain_test/performance_results.txt
|
|
170
193
|
blockchain_test/performance_results_simple.txt
|
|
@@ -191,6 +214,14 @@ blockchain_test/vm_perf_100.zx
|
|
|
191
214
|
blockchain_test/vm_test_basic.zx
|
|
192
215
|
blockchain_test/vm_test_simple.zx
|
|
193
216
|
blockchain_test/wallet.zx
|
|
217
|
+
blockchain_test/full_network_chain/full_network_blockchain.zx
|
|
218
|
+
blockchain_test/full_network_chain/tmp_account_init.zx
|
|
219
|
+
blockchain_test/full_network_chain/tmp_assign_test.zx
|
|
220
|
+
blockchain_test/full_network_chain/tmp_min.zx
|
|
221
|
+
blockchain_test/full_network_chain/tmp_pass_contract.zx
|
|
222
|
+
blockchain_test/full_network_chain/tmp_simple.zx
|
|
223
|
+
blockchain_test/full_network_chain/tmp_store_contract.zx
|
|
224
|
+
blockchain_test/security_tests/blockchain_exploit_probe.zx
|
|
194
225
|
blockchain_test/security_tests_working/test_dos_working.zx
|
|
195
226
|
blockchain_test/security_tests_working/test_overflow_working.zx
|
|
196
227
|
blockchain_test/security_tests_working/test_reentrancy_working.zx
|
|
@@ -443,6 +474,15 @@ linguist-submission/zexus.tmLanguage.json
|
|
|
443
474
|
linguist-submission/samples/basic.zx
|
|
444
475
|
linguist-submission/samples/blockchain.zx
|
|
445
476
|
linguist-submission/samples/security.zx
|
|
477
|
+
rust_core/Cargo.lock
|
|
478
|
+
rust_core/Cargo.toml
|
|
479
|
+
rust_core/src/binary_bytecode.rs
|
|
480
|
+
rust_core/src/executor.rs
|
|
481
|
+
rust_core/src/hasher.rs
|
|
482
|
+
rust_core/src/lib.rs
|
|
483
|
+
rust_core/src/merkle.rs
|
|
484
|
+
rust_core/src/signature.rs
|
|
485
|
+
rust_core/src/validator.rs
|
|
446
486
|
samples/basic.zx
|
|
447
487
|
samples/blockchain.zx
|
|
448
488
|
samples/security.zx
|
|
@@ -453,10 +493,12 @@ scripts/fixed_parser.py
|
|
|
453
493
|
scripts/integration_demo.py
|
|
454
494
|
scripts/main.py
|
|
455
495
|
scripts/postinstall.js
|
|
496
|
+
scripts/profile_full_network_components.py
|
|
456
497
|
scripts/run_zexus_tests.py
|
|
457
498
|
scripts/zpm.py
|
|
458
499
|
scripts/zx-luncher.py
|
|
459
500
|
src/README.md
|
|
501
|
+
src/__init__.py
|
|
460
502
|
src/tests/run_zexus_tests.py
|
|
461
503
|
src/tests/test_all_phases.zx
|
|
462
504
|
src/tests/test_blockchain_features.zx
|
|
@@ -493,6 +535,7 @@ src/zexus/environment.py
|
|
|
493
535
|
src/zexus/environment_manager.py
|
|
494
536
|
src/zexus/error_reporter.py
|
|
495
537
|
src/zexus/evaluator_original.py
|
|
538
|
+
src/zexus/event_loop.py
|
|
496
539
|
src/zexus/external_bridge.py
|
|
497
540
|
src/zexus/find_affected_imports.sh
|
|
498
541
|
src/zexus/hybrid_orchestrator.py
|
|
@@ -515,6 +558,7 @@ src/zexus/stack_trace.py
|
|
|
515
558
|
src/zexus/stdlib_integration.py
|
|
516
559
|
src/zexus/strategy_recovery.py
|
|
517
560
|
src/zexus/syntax_validator.py
|
|
561
|
+
src/zexus/type_checker.py
|
|
518
562
|
src/zexus/type_system.py
|
|
519
563
|
src/zexus/validation_system.py
|
|
520
564
|
src/zexus/virtual_filesystem.py
|
|
@@ -530,9 +574,28 @@ src/zexus.egg-info/top_level.txt
|
|
|
530
574
|
src/zexus/access_control_system/__init__.py
|
|
531
575
|
src/zexus/access_control_system/access_control.py
|
|
532
576
|
src/zexus/blockchain/__init__.py
|
|
577
|
+
src/zexus/blockchain/accelerator.py
|
|
578
|
+
src/zexus/blockchain/chain.py
|
|
579
|
+
src/zexus/blockchain/consensus.py
|
|
580
|
+
src/zexus/blockchain/contract_vm.py
|
|
533
581
|
src/zexus/blockchain/crypto.py
|
|
582
|
+
src/zexus/blockchain/events.py
|
|
534
583
|
src/zexus/blockchain/ledger.py
|
|
584
|
+
src/zexus/blockchain/loadtest.py
|
|
585
|
+
src/zexus/blockchain/monitoring.py
|
|
586
|
+
src/zexus/blockchain/mpt.py
|
|
587
|
+
src/zexus/blockchain/multichain.py
|
|
588
|
+
src/zexus/blockchain/multiprocess_executor.py
|
|
589
|
+
src/zexus/blockchain/network.py
|
|
590
|
+
src/zexus/blockchain/node.py
|
|
591
|
+
src/zexus/blockchain/rpc.py
|
|
592
|
+
src/zexus/blockchain/rust_bridge.py
|
|
593
|
+
src/zexus/blockchain/storage.py
|
|
594
|
+
src/zexus/blockchain/tokens.py
|
|
535
595
|
src/zexus/blockchain/transaction.py
|
|
596
|
+
src/zexus/blockchain/upgradeable.py
|
|
597
|
+
src/zexus/blockchain/verification.py
|
|
598
|
+
src/zexus/blockchain/wallet.py
|
|
536
599
|
src/zexus/cli/__init__.py
|
|
537
600
|
src/zexus/cli/main.py
|
|
538
601
|
src/zexus/cli/zpm.py
|
|
@@ -543,6 +606,10 @@ src/zexus/compiler/lexer.py
|
|
|
543
606
|
src/zexus/compiler/parser.py
|
|
544
607
|
src/zexus/compiler/semantic.py
|
|
545
608
|
src/zexus/compiler/zexus_ast.py
|
|
609
|
+
src/zexus/dap/__init__.py
|
|
610
|
+
src/zexus/dap/__main__.py
|
|
611
|
+
src/zexus/dap/dap_server.py
|
|
612
|
+
src/zexus/dap/debug_engine.py
|
|
546
613
|
src/zexus/evaluator/__init__.py
|
|
547
614
|
src/zexus/evaluator/bytecode_compiler.py
|
|
548
615
|
src/zexus/evaluator/core.py
|
|
@@ -575,8 +642,11 @@ src/zexus/renderer/graphics.py
|
|
|
575
642
|
src/zexus/renderer/layout.py
|
|
576
643
|
src/zexus/renderer/main_renderer.py
|
|
577
644
|
src/zexus/renderer/painter.py
|
|
645
|
+
src/zexus/renderer/tk_backend.py
|
|
646
|
+
src/zexus/renderer/web_backend.py
|
|
578
647
|
src/zexus/runtime/__init__.py
|
|
579
648
|
src/zexus/runtime/async_runtime.py
|
|
649
|
+
src/zexus/runtime/file_flags.py
|
|
580
650
|
src/zexus/runtime/load_manager.py
|
|
581
651
|
src/zexus/safety/__init__.py
|
|
582
652
|
src/zexus/safety/memory_safety.py
|
|
@@ -600,18 +670,29 @@ src/zexus/stdlib/regex.py
|
|
|
600
670
|
src/zexus/stdlib/sockets.py
|
|
601
671
|
src/zexus/stdlib/test_framework.zx
|
|
602
672
|
src/zexus/stdlib/test_runner.zx
|
|
673
|
+
src/zexus/stdlib/websockets.py
|
|
603
674
|
src/zexus/testing/zpics.py
|
|
604
675
|
src/zexus/testing/zpics_runtime.py
|
|
605
676
|
src/zexus/vm/__init__.py
|
|
606
677
|
src/zexus/vm/async_optimizer.py
|
|
678
|
+
src/zexus/vm/binary_bytecode.py
|
|
607
679
|
src/zexus/vm/bytecode.py
|
|
608
680
|
src/zexus/vm/bytecode_converter.py
|
|
681
|
+
src/zexus/vm/cabi.c
|
|
682
|
+
src/zexus/vm/cabi.cpython-312-x86_64-linux-gnu.so
|
|
683
|
+
src/zexus/vm/cabi.h
|
|
609
684
|
src/zexus/vm/cache.py
|
|
610
685
|
src/zexus/vm/compiler.py
|
|
686
|
+
src/zexus/vm/fastops.c
|
|
687
|
+
src/zexus/vm/fastops.cpython-312-x86_64-linux-gnu.so
|
|
688
|
+
src/zexus/vm/fastops.pyx
|
|
611
689
|
src/zexus/vm/gas_metering.py
|
|
612
690
|
src/zexus/vm/jit.py
|
|
613
691
|
src/zexus/vm/memory_manager.py
|
|
614
692
|
src/zexus/vm/memory_pool.py
|
|
693
|
+
src/zexus/vm/native_jit_backend.py
|
|
694
|
+
src/zexus/vm/native_runtime.cpp
|
|
695
|
+
src/zexus/vm/native_runtime.cpython-312-x86_64-linux-gnu.so
|
|
615
696
|
src/zexus/vm/optimizer.py
|
|
616
697
|
src/zexus/vm/parallel_vm.py
|
|
617
698
|
src/zexus/vm/peephole_optimizer.py
|
|
@@ -620,6 +701,7 @@ src/zexus/vm/register_allocator.py
|
|
|
620
701
|
src/zexus/vm/register_vm.py
|
|
621
702
|
src/zexus/vm/ssa_converter.py
|
|
622
703
|
src/zexus/vm/vm.py
|
|
704
|
+
src/zexus/vm/wasm_compiler.py
|
|
623
705
|
src/zexus/zpm/__init__.py
|
|
624
706
|
src/zexus/zpm/installer.py
|
|
625
707
|
src/zexus/zpm/package_manager.py
|
|
@@ -665,6 +747,15 @@ tests/advanced_edge_cases/test_network_capabilities.py
|
|
|
665
747
|
tests/advanced_edge_cases/test_recursion_limits.py
|
|
666
748
|
tests/advanced_edge_cases/test_resource_cleanup.py
|
|
667
749
|
tests/advanced_edge_cases/test_resource_cleanup_simple.py
|
|
750
|
+
tests/blockchain/__init__.py
|
|
751
|
+
tests/blockchain/test_blockchain_infra.py
|
|
752
|
+
tests/blockchain/test_contract_vm_multichain.py
|
|
753
|
+
tests/blockchain/test_crypto_plugin.py
|
|
754
|
+
tests/blockchain/test_multichain.py
|
|
755
|
+
tests/blockchain/test_nine_features.py
|
|
756
|
+
tests/blockchain/test_phase0_bytecode_vm.py
|
|
757
|
+
tests/blockchain/test_rpc.py
|
|
758
|
+
tests/blockchain/test_three_features.py
|
|
668
759
|
tests/builtin_modules/README.md
|
|
669
760
|
tests/builtin_modules/test_crypto_basic.zx
|
|
670
761
|
tests/edge_cases/README.md
|
|
@@ -950,10 +1041,12 @@ tests/unit/test_concurrent_execution.py
|
|
|
950
1041
|
tests/unit/test_convenience_advanced_features.py
|
|
951
1042
|
tests/unit/test_ecosystem.py
|
|
952
1043
|
tests/unit/test_edge_cases.py
|
|
1044
|
+
tests/unit/test_evaluator_long_program_stress.py
|
|
953
1045
|
tests/unit/test_exact_phase10.py
|
|
954
1046
|
tests/unit/test_find_load_keywords.py
|
|
955
1047
|
tests/unit/test_hybrid.py
|
|
956
1048
|
tests/unit/test_lexer_directly.py
|
|
1049
|
+
tests/unit/test_long_file_stability.py
|
|
957
1050
|
tests/unit/test_map_fix.py
|
|
958
1051
|
tests/unit/test_map_only.py
|
|
959
1052
|
tests/unit/test_memory_leakage.py
|
|
@@ -982,6 +1075,7 @@ tests/vm/benchmark_register_vm.py
|
|
|
982
1075
|
tests/vm/test_all_optimizations_integration.py
|
|
983
1076
|
tests/vm/test_async_optimizer.py
|
|
984
1077
|
tests/vm/test_async_verification.py
|
|
1078
|
+
tests/vm/test_binary_bytecode.py
|
|
985
1079
|
tests/vm/test_blockchain_opcodes.py
|
|
986
1080
|
tests/vm/test_cache.py
|
|
987
1081
|
tests/vm/test_comprehensive_vm_verification.py
|
|
@@ -1002,12 +1096,25 @@ tests/vm/test_vm_async_integration.py
|
|
|
1002
1096
|
tests/vm/test_vm_memory_pool_integration.py
|
|
1003
1097
|
tests/vm/test_vm_peephole_integration.py
|
|
1004
1098
|
tests/vm/test_vm_ssa_integration.py
|
|
1099
|
+
tests/zx_features/harness.zx
|
|
1100
|
+
tests/zx_features/run_all.sh
|
|
1101
|
+
tests/zx_features/test_10_upgrade_verify_accel.zx
|
|
1102
|
+
tests/zx_features/test_1_rbf.zx
|
|
1103
|
+
tests/zx_features/test_2_gas.zx
|
|
1104
|
+
tests/zx_features/test_3_persistence.zx
|
|
1105
|
+
tests/zx_features/test_4_cross_contract.zx
|
|
1106
|
+
tests/zx_features/test_5_events.zx
|
|
1107
|
+
tests/zx_features/test_6_mpt.zx
|
|
1108
|
+
tests/zx_features/test_7_wallet.zx
|
|
1109
|
+
tests/zx_features/test_8_bft.zx
|
|
1110
|
+
tests/zx_features/test_9_tokens.zx
|
|
1005
1111
|
vscode-extension/.gitignore
|
|
1006
1112
|
vscode-extension/README.md
|
|
1007
1113
|
vscode-extension/language-configuration.json
|
|
1008
1114
|
vscode-extension/package.json
|
|
1009
1115
|
vscode-extension/tsconfig.json
|
|
1010
1116
|
vscode-extension/snippets/zexus.json
|
|
1117
|
+
vscode-extension/src/debugAdapter.ts
|
|
1011
1118
|
vscode-extension/src/extension.ts
|
|
1012
1119
|
vscode-extension/syntaxes/zexus.tmLanguage.json
|
|
1013
1120
|
zexus-syntax/install-syntax.sh
|