zexus 1.6.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.
Files changed (227) hide show
  1. package/LICENSE +0 -0
  2. package/README.md +2513 -0
  3. package/bin/zexus +2 -0
  4. package/bin/zpics +2 -0
  5. package/bin/zpm +2 -0
  6. package/bin/zx +2 -0
  7. package/bin/zx-deploy +2 -0
  8. package/bin/zx-dev +2 -0
  9. package/bin/zx-run +2 -0
  10. package/package.json +66 -0
  11. package/scripts/README.md +24 -0
  12. package/scripts/postinstall.js +44 -0
  13. package/shared_config.json +24 -0
  14. package/src/README.md +1525 -0
  15. package/src/tests/run_zexus_tests.py +117 -0
  16. package/src/tests/test_all_phases.zx +346 -0
  17. package/src/tests/test_blockchain_features.zx +306 -0
  18. package/src/tests/test_complexity_features.zx +321 -0
  19. package/src/tests/test_core_integration.py +185 -0
  20. package/src/tests/test_phase10_ecosystem.zx +177 -0
  21. package/src/tests/test_phase1_modifiers.zx +87 -0
  22. package/src/tests/test_phase2_plugins.zx +80 -0
  23. package/src/tests/test_phase3_security.zx +97 -0
  24. package/src/tests/test_phase4_vfs.zx +116 -0
  25. package/src/tests/test_phase5_types.zx +117 -0
  26. package/src/tests/test_phase6_metaprogramming.zx +125 -0
  27. package/src/tests/test_phase7_optimization.zx +132 -0
  28. package/src/tests/test_phase9_advanced_types.zx +157 -0
  29. package/src/tests/test_security_features.py +419 -0
  30. package/src/tests/test_security_features.zx +276 -0
  31. package/src/tests/test_simple_zx.zx +1 -0
  32. package/src/tests/test_verification_simple.zx +69 -0
  33. package/src/zexus/__init__.py +28 -0
  34. package/src/zexus/__main__.py +5 -0
  35. package/src/zexus/__pycache__/__init__.cpython-312.pyc +0 -0
  36. package/src/zexus/__pycache__/advanced_types.cpython-312.pyc +0 -0
  37. package/src/zexus/__pycache__/builtin_modules.cpython-312.pyc +0 -0
  38. package/src/zexus/__pycache__/capability_system.cpython-312.pyc +0 -0
  39. package/src/zexus/__pycache__/complexity_system.cpython-312.pyc +0 -0
  40. package/src/zexus/__pycache__/concurrency_system.cpython-312.pyc +0 -0
  41. package/src/zexus/__pycache__/config.cpython-312.pyc +0 -0
  42. package/src/zexus/__pycache__/dependency_injection.cpython-312.pyc +0 -0
  43. package/src/zexus/__pycache__/ecosystem.cpython-312.pyc +0 -0
  44. package/src/zexus/__pycache__/environment.cpython-312.pyc +0 -0
  45. package/src/zexus/__pycache__/error_reporter.cpython-312.pyc +0 -0
  46. package/src/zexus/__pycache__/hybrid_orchestrator.cpython-312.pyc +0 -0
  47. package/src/zexus/__pycache__/lexer.cpython-312.pyc +0 -0
  48. package/src/zexus/__pycache__/metaprogramming.cpython-312.pyc +0 -0
  49. package/src/zexus/__pycache__/module_cache.cpython-312.pyc +0 -0
  50. package/src/zexus/__pycache__/object.cpython-312.pyc +0 -0
  51. package/src/zexus/__pycache__/optimization.cpython-312.pyc +0 -0
  52. package/src/zexus/__pycache__/plugin_system.cpython-312.pyc +0 -0
  53. package/src/zexus/__pycache__/policy_engine.cpython-312.pyc +0 -0
  54. package/src/zexus/__pycache__/security.cpython-312.pyc +0 -0
  55. package/src/zexus/__pycache__/stdlib_integration.cpython-312.pyc +0 -0
  56. package/src/zexus/__pycache__/strategy_recovery.cpython-312.pyc +0 -0
  57. package/src/zexus/__pycache__/syntax_validator.cpython-312.pyc +0 -0
  58. package/src/zexus/__pycache__/type_system.cpython-312.pyc +0 -0
  59. package/src/zexus/__pycache__/virtual_filesystem.cpython-312.pyc +0 -0
  60. package/src/zexus/__pycache__/zexus_ast.cpython-312.pyc +0 -0
  61. package/src/zexus/__pycache__/zexus_token.cpython-312.pyc +0 -0
  62. package/src/zexus/advanced_types.py +401 -0
  63. package/src/zexus/blockchain/__init__.py +40 -0
  64. package/src/zexus/blockchain/__pycache__/__init__.cpython-312.pyc +0 -0
  65. package/src/zexus/blockchain/__pycache__/crypto.cpython-312.pyc +0 -0
  66. package/src/zexus/blockchain/__pycache__/ledger.cpython-312.pyc +0 -0
  67. package/src/zexus/blockchain/__pycache__/transaction.cpython-312.pyc +0 -0
  68. package/src/zexus/blockchain/crypto.py +463 -0
  69. package/src/zexus/blockchain/ledger.py +255 -0
  70. package/src/zexus/blockchain/transaction.py +267 -0
  71. package/src/zexus/builtin_modules.py +284 -0
  72. package/src/zexus/builtin_plugins.py +317 -0
  73. package/src/zexus/capability_system.py +372 -0
  74. package/src/zexus/cli/__init__.py +2 -0
  75. package/src/zexus/cli/__pycache__/__init__.cpython-312.pyc +0 -0
  76. package/src/zexus/cli/__pycache__/main.cpython-312.pyc +0 -0
  77. package/src/zexus/cli/main.py +707 -0
  78. package/src/zexus/cli/zpm.py +203 -0
  79. package/src/zexus/compare_interpreter_compiler.py +146 -0
  80. package/src/zexus/compiler/__init__.py +169 -0
  81. package/src/zexus/compiler/__pycache__/__init__.cpython-312.pyc +0 -0
  82. package/src/zexus/compiler/__pycache__/lexer.cpython-312.pyc +0 -0
  83. package/src/zexus/compiler/__pycache__/parser.cpython-312.pyc +0 -0
  84. package/src/zexus/compiler/__pycache__/zexus_ast.cpython-312.pyc +0 -0
  85. package/src/zexus/compiler/bytecode.py +266 -0
  86. package/src/zexus/compiler/compat_runtime.py +277 -0
  87. package/src/zexus/compiler/lexer.py +257 -0
  88. package/src/zexus/compiler/parser.py +779 -0
  89. package/src/zexus/compiler/semantic.py +118 -0
  90. package/src/zexus/compiler/zexus_ast.py +454 -0
  91. package/src/zexus/complexity_system.py +575 -0
  92. package/src/zexus/concurrency_system.py +493 -0
  93. package/src/zexus/config.py +201 -0
  94. package/src/zexus/crypto_bridge.py +19 -0
  95. package/src/zexus/dependency_injection.py +423 -0
  96. package/src/zexus/ecosystem.py +434 -0
  97. package/src/zexus/environment.py +101 -0
  98. package/src/zexus/environment_manager.py +119 -0
  99. package/src/zexus/error_reporter.py +314 -0
  100. package/src/zexus/evaluator/__init__.py +12 -0
  101. package/src/zexus/evaluator/__pycache__/__init__.cpython-312.pyc +0 -0
  102. package/src/zexus/evaluator/__pycache__/bytecode_compiler.cpython-312.pyc +0 -0
  103. package/src/zexus/evaluator/__pycache__/core.cpython-312.pyc +0 -0
  104. package/src/zexus/evaluator/__pycache__/expressions.cpython-312.pyc +0 -0
  105. package/src/zexus/evaluator/__pycache__/functions.cpython-312.pyc +0 -0
  106. package/src/zexus/evaluator/__pycache__/integration.cpython-312.pyc +0 -0
  107. package/src/zexus/evaluator/__pycache__/statements.cpython-312.pyc +0 -0
  108. package/src/zexus/evaluator/__pycache__/utils.cpython-312.pyc +0 -0
  109. package/src/zexus/evaluator/bytecode_compiler.py +700 -0
  110. package/src/zexus/evaluator/core.py +891 -0
  111. package/src/zexus/evaluator/expressions.py +827 -0
  112. package/src/zexus/evaluator/functions.py +3989 -0
  113. package/src/zexus/evaluator/integration.py +396 -0
  114. package/src/zexus/evaluator/statements.py +4303 -0
  115. package/src/zexus/evaluator/utils.py +126 -0
  116. package/src/zexus/evaluator_original.py +2041 -0
  117. package/src/zexus/external_bridge.py +16 -0
  118. package/src/zexus/find_affected_imports.sh +155 -0
  119. package/src/zexus/hybrid_orchestrator.py +152 -0
  120. package/src/zexus/input_validation.py +259 -0
  121. package/src/zexus/lexer.py +571 -0
  122. package/src/zexus/logging.py +89 -0
  123. package/src/zexus/lsp/__init__.py +9 -0
  124. package/src/zexus/lsp/completion_provider.py +207 -0
  125. package/src/zexus/lsp/definition_provider.py +22 -0
  126. package/src/zexus/lsp/hover_provider.py +71 -0
  127. package/src/zexus/lsp/server.py +269 -0
  128. package/src/zexus/lsp/symbol_provider.py +31 -0
  129. package/src/zexus/metaprogramming.py +321 -0
  130. package/src/zexus/module_cache.py +89 -0
  131. package/src/zexus/module_manager.py +107 -0
  132. package/src/zexus/object.py +973 -0
  133. package/src/zexus/optimization.py +424 -0
  134. package/src/zexus/parser/__init__.py +31 -0
  135. package/src/zexus/parser/__pycache__/__init__.cpython-312.pyc +0 -0
  136. package/src/zexus/parser/__pycache__/parser.cpython-312.pyc +0 -0
  137. package/src/zexus/parser/__pycache__/strategy_context.cpython-312.pyc +0 -0
  138. package/src/zexus/parser/__pycache__/strategy_structural.cpython-312.pyc +0 -0
  139. package/src/zexus/parser/integration.py +86 -0
  140. package/src/zexus/parser/parser.py +3977 -0
  141. package/src/zexus/parser/strategy_context.py +7254 -0
  142. package/src/zexus/parser/strategy_structural.py +1033 -0
  143. package/src/zexus/persistence.py +391 -0
  144. package/src/zexus/plugin_system.py +290 -0
  145. package/src/zexus/policy_engine.py +365 -0
  146. package/src/zexus/profiler/__init__.py +5 -0
  147. package/src/zexus/profiler/profiler.py +233 -0
  148. package/src/zexus/purity_system.py +398 -0
  149. package/src/zexus/runtime/__init__.py +20 -0
  150. package/src/zexus/runtime/async_runtime.py +324 -0
  151. package/src/zexus/search_old_imports.sh +65 -0
  152. package/src/zexus/security.py +1407 -0
  153. package/src/zexus/stack_trace.py +233 -0
  154. package/src/zexus/stdlib/__init__.py +27 -0
  155. package/src/zexus/stdlib/blockchain.py +341 -0
  156. package/src/zexus/stdlib/compression.py +167 -0
  157. package/src/zexus/stdlib/crypto.py +124 -0
  158. package/src/zexus/stdlib/datetime.py +163 -0
  159. package/src/zexus/stdlib/db_mongo.py +199 -0
  160. package/src/zexus/stdlib/db_mysql.py +162 -0
  161. package/src/zexus/stdlib/db_postgres.py +163 -0
  162. package/src/zexus/stdlib/db_sqlite.py +133 -0
  163. package/src/zexus/stdlib/encoding.py +230 -0
  164. package/src/zexus/stdlib/fs.py +195 -0
  165. package/src/zexus/stdlib/http.py +219 -0
  166. package/src/zexus/stdlib/http_server.py +248 -0
  167. package/src/zexus/stdlib/json_module.py +61 -0
  168. package/src/zexus/stdlib/math.py +360 -0
  169. package/src/zexus/stdlib/os_module.py +265 -0
  170. package/src/zexus/stdlib/regex.py +148 -0
  171. package/src/zexus/stdlib/sockets.py +253 -0
  172. package/src/zexus/stdlib/test_framework.zx +208 -0
  173. package/src/zexus/stdlib/test_runner.zx +119 -0
  174. package/src/zexus/stdlib_integration.py +341 -0
  175. package/src/zexus/strategy_recovery.py +256 -0
  176. package/src/zexus/syntax_validator.py +356 -0
  177. package/src/zexus/testing/zpics.py +407 -0
  178. package/src/zexus/testing/zpics_runtime.py +369 -0
  179. package/src/zexus/type_system.py +374 -0
  180. package/src/zexus/validation_system.py +569 -0
  181. package/src/zexus/virtual_filesystem.py +355 -0
  182. package/src/zexus/vm/__init__.py +8 -0
  183. package/src/zexus/vm/__pycache__/__init__.cpython-312.pyc +0 -0
  184. package/src/zexus/vm/__pycache__/async_optimizer.cpython-312.pyc +0 -0
  185. package/src/zexus/vm/__pycache__/bytecode.cpython-312.pyc +0 -0
  186. package/src/zexus/vm/__pycache__/cache.cpython-312.pyc +0 -0
  187. package/src/zexus/vm/__pycache__/jit.cpython-312.pyc +0 -0
  188. package/src/zexus/vm/__pycache__/memory_manager.cpython-312.pyc +0 -0
  189. package/src/zexus/vm/__pycache__/memory_pool.cpython-312.pyc +0 -0
  190. package/src/zexus/vm/__pycache__/optimizer.cpython-312.pyc +0 -0
  191. package/src/zexus/vm/__pycache__/parallel_vm.cpython-312.pyc +0 -0
  192. package/src/zexus/vm/__pycache__/peephole_optimizer.cpython-312.pyc +0 -0
  193. package/src/zexus/vm/__pycache__/profiler.cpython-312.pyc +0 -0
  194. package/src/zexus/vm/__pycache__/register_allocator.cpython-312.pyc +0 -0
  195. package/src/zexus/vm/__pycache__/register_vm.cpython-312.pyc +0 -0
  196. package/src/zexus/vm/__pycache__/ssa_converter.cpython-312.pyc +0 -0
  197. package/src/zexus/vm/__pycache__/vm.cpython-312.pyc +0 -0
  198. package/src/zexus/vm/async_optimizer.py +420 -0
  199. package/src/zexus/vm/bytecode.py +428 -0
  200. package/src/zexus/vm/bytecode_converter.py +297 -0
  201. package/src/zexus/vm/cache.py +532 -0
  202. package/src/zexus/vm/jit.py +720 -0
  203. package/src/zexus/vm/memory_manager.py +520 -0
  204. package/src/zexus/vm/memory_pool.py +511 -0
  205. package/src/zexus/vm/optimizer.py +478 -0
  206. package/src/zexus/vm/parallel_vm.py +899 -0
  207. package/src/zexus/vm/peephole_optimizer.py +452 -0
  208. package/src/zexus/vm/profiler.py +527 -0
  209. package/src/zexus/vm/register_allocator.py +462 -0
  210. package/src/zexus/vm/register_vm.py +520 -0
  211. package/src/zexus/vm/ssa_converter.py +757 -0
  212. package/src/zexus/vm/vm.py +1392 -0
  213. package/src/zexus/zexus_ast.py +1782 -0
  214. package/src/zexus/zexus_token.py +253 -0
  215. package/src/zexus/zpm/__init__.py +15 -0
  216. package/src/zexus/zpm/installer.py +116 -0
  217. package/src/zexus/zpm/package_manager.py +208 -0
  218. package/src/zexus/zpm/publisher.py +98 -0
  219. package/src/zexus/zpm/registry.py +110 -0
  220. package/src/zexus.egg-info/PKG-INFO +2235 -0
  221. package/src/zexus.egg-info/SOURCES.txt +876 -0
  222. package/src/zexus.egg-info/dependency_links.txt +1 -0
  223. package/src/zexus.egg-info/entry_points.txt +3 -0
  224. package/src/zexus.egg-info/not-zip-safe +1 -0
  225. package/src/zexus.egg-info/requires.txt +14 -0
  226. package/src/zexus.egg-info/top_level.txt +2 -0
  227. package/zexus.json +14 -0
@@ -0,0 +1,876 @@
1
+ .gitattributes
2
+ .gitignore
3
+ ALL_ISSUES_FIXED_FINAL_REPORT.md
4
+ CHANGELOG.md
5
+ CONTINUE_IMPLEMENTATION_SUMMARY.md
6
+ DEV_SCRIPTS_README.md
7
+ FRIEND_PROOF.md
8
+ LICENSE
9
+ PROOF_FRIEND_WRONG.md
10
+ PUBLISH_TO_PYPI.md
11
+ QUESTIONS_ANSWERED.md
12
+ README.md
13
+ README.old.md
14
+ SSH_PUBLIC_KEY.txt
15
+ VM_INTEGRATION_STATUS.md
16
+ VM_QUICK_REFERENCE.md
17
+ VSCODE_IMPLEMENTATION_SUMMARY.md
18
+ analytics.py
19
+ calculation.txt
20
+ crypto.zx
21
+ demo_error_reporting.py
22
+ demo_runtime_errors.py
23
+ dynamic.zx
24
+ generated.cpp
25
+ generated.py
26
+ generated.zx
27
+ gitignore
28
+ index.zx
29
+ install.sh
30
+ math_ops.cpp
31
+ pyproject.toml
32
+ pytest.ini
33
+ script.py
34
+ setup.cfg
35
+ setup.py
36
+ setup_stdlib.sh
37
+ shared.txt
38
+ shared_config.json
39
+ ultimate_test.zx
40
+ zexus.json
41
+ zexus_compiler.py.backup
42
+ zx
43
+ zx-deploy
44
+ zx-dev
45
+ zx-run
46
+ zx.bin
47
+ .github/linguist.yml
48
+ .vscode/extensions.json
49
+ .vscode/settings.json
50
+ .vscode/extensions/zexus-language/README.md
51
+ .vscode/extensions/zexus-language/language-configuration.json
52
+ .vscode/extensions/zexus-language/package.json
53
+ .vscode/extensions/zexus-language/snippets/zexus.json
54
+ .vscode/extensions/zexus-language/syntaxes/zexus.tmLanguage.json
55
+ .zexus_persist/key.json
56
+ .zexus_persist/test_key.json
57
+ .zexus_persist/test_key2.json
58
+ .zexus_persist/test_key4.json
59
+ ENHANCEMENT_PACKAGE/00_START_HERE.md
60
+ ENHANCEMENT_PACKAGE/AUDIT_IMPLEMENTATION.md
61
+ ENHANCEMENT_PACKAGE/BUSINESS_IMPACT.md
62
+ ENHANCEMENT_PACKAGE/CODE_EXAMPLES.md
63
+ ENHANCEMENT_PACKAGE/CONVENIENCE_ADVANCED_FEATURES_IMPLEMENTATION.md
64
+ ENHANCEMENT_PACKAGE/DELIVERY_SUMMARY.md
65
+ ENHANCEMENT_PACKAGE/EXECUTIVE_SUMMARY.md
66
+ ENHANCEMENT_PACKAGE/FINAL_SUMMARY.md
67
+ ENHANCEMENT_PACKAGE/IMPLEMENTATION_GUIDE.md
68
+ ENHANCEMENT_PACKAGE/INDEX.md
69
+ ENHANCEMENT_PACKAGE/PERFORMANCE_FEATURES_IMPLEMENTATION.md
70
+ ENHANCEMENT_PACKAGE/RESTRICT_SANDBOX_TRAIL_IMPLEMENTATION.md
71
+ ENHANCEMENT_PACKAGE/ROADMAP.md
72
+ ENHANCEMENT_PACKAGE/STRATEGIC_FEATURES.md
73
+ ENHANCEMENT_PACKAGE/STRATEGIC_UPGRADES.md
74
+ __pycache__/token.cpython-312.pyc
75
+ chain_data/AuditedSystem_c9b59548.sqlite
76
+ chain_data/Counter_1f5a5ef3.sqlite
77
+ chain_data/InventorySystem_52f4b5ae.sqlite
78
+ chain_data/Ledger_93364cf3.sqlite
79
+ chain_data/Ledger_d8996f8a.sqlite
80
+ chain_data/OrderProcessor_86a1cb3e.sqlite
81
+ chain_data/Registry_1bd6e4e1.sqlite
82
+ chain_data/SecureBank_c10ecc56.sqlite
83
+ chain_data/SecureVault_808737b3.sqlite
84
+ chain_data/SecureVault_bbd69bce.sqlite
85
+ chain_data/SimpleContract_a5ad48cd.sqlite
86
+ chain_data/SimpleToken_025b595a.sqlite
87
+ chain_data/SimpleToken_05c51ec8.sqlite
88
+ chain_data/SimpleToken_157698d2.sqlite
89
+ chain_data/SimpleToken_1f3bead7.sqlite
90
+ chain_data/SimpleToken_27337461.sqlite
91
+ chain_data/SimpleToken_377ce25e.sqlite
92
+ chain_data/SimpleToken_3bd86e9b.sqlite
93
+ chain_data/SimpleToken_4911e875.sqlite
94
+ chain_data/SimpleToken_4a5b8035.sqlite
95
+ chain_data/SimpleToken_52bd8215.sqlite
96
+ chain_data/SimpleToken_5338d259.sqlite
97
+ chain_data/SimpleToken_57af60a5.sqlite
98
+ chain_data/SimpleToken_5b10834b.sqlite
99
+ chain_data/SimpleToken_5c9e1be3.sqlite
100
+ chain_data/SimpleToken_5dba2813.sqlite
101
+ chain_data/SimpleToken_5ed19f0f.sqlite
102
+ chain_data/SimpleToken_68a366ab.sqlite
103
+ chain_data/SimpleToken_6ded1c0d.sqlite
104
+ chain_data/SimpleToken_6ed36541.sqlite
105
+ chain_data/SimpleToken_818dff80.sqlite
106
+ chain_data/SimpleToken_919c0f32.sqlite
107
+ chain_data/SimpleToken_9b0b6aa5.sqlite
108
+ chain_data/SimpleToken_a66b9a42.sqlite
109
+ chain_data/SimpleToken_afe90621.sqlite
110
+ chain_data/SimpleToken_b55977b6.sqlite
111
+ chain_data/SimpleToken_c0fa9960.sqlite
112
+ chain_data/SimpleToken_c3bc9ad0.sqlite
113
+ chain_data/SimpleToken_c9fa9f2f.sqlite
114
+ chain_data/SimpleToken_cdbb8fde.sqlite
115
+ chain_data/SimpleToken_d2879217.sqlite
116
+ chain_data/SimpleToken_e671ffa0.sqlite
117
+ chain_data/SimpleToken_ebf82c2b.sqlite
118
+ chain_data/SimpleToken_f81718af.sqlite
119
+ chain_data/SimpleToken_fd7b1df4.sqlite
120
+ chain_data/SimpleWallet_b8d904e6.sqlite
121
+ chain_data/Validator_d995c23f.sqlite
122
+ chain_data/Wallet_2bd3db16.sqlite
123
+ chain_data/Wallet_396f524e.sqlite
124
+ chain_data/test_tx_1c2ecc3b-d652-41.sqlite
125
+ chain_data/test_tx_1d9814d0.sqlite
126
+ chain_data/test_tx_966d1db3.sqlite
127
+ chain_data/test_tx_b942a118-17a5-4a.sqlite
128
+ chain_data/test_tx_d3e848b9.sqlite
129
+ chain_data/test_tx_e1bdbc78-5b6b-4d.sqlite
130
+ docs/ARCHITECTURE.md
131
+ docs/ASYNC_IMPLEMENTATION_PLAN.md
132
+ docs/BLOCKCHAIN_FEATURES.md
133
+ docs/CONCURRENCY.md
134
+ docs/DOCUMENTATION_INDEX.md
135
+ docs/ERROR_REPORTING.md
136
+ docs/GITHUB_LINGUIST_SUBMISSION.md
137
+ docs/INDEX.md
138
+ docs/ISSUES.md
139
+ docs/MAIN_ENTRY_POINT.md
140
+ docs/MAIN_ENTRY_POINT_ENHANCEMENTS.md
141
+ docs/MODULE_SYSTEM.md
142
+ docs/ORGANIZATION.md
143
+ docs/PARSER_OPTIMIZATION_GUIDE.md
144
+ docs/PERFORMANCE_FEATURES.md
145
+ docs/PHILOSOPHY.md
146
+ docs/PLUGIN_QUICK_REFERENCE.md
147
+ docs/PLUGIN_SYSTEM.md
148
+ docs/QUICK_START.md
149
+ docs/README.md
150
+ docs/SECURITY_FEATURES.md
151
+ docs/SECURITY_FEATURES_GUIDE.zx
152
+ docs/STATUS.md
153
+ docs/TEST_ISSUES_REPORT.md
154
+ docs/WATCH_FEATURE.md
155
+ docs/ZPM_GUIDE.md
156
+ docs/future_implentations.md
157
+ docs/guides/PLUGIN_SYSTEM_GUIDE.md
158
+ docs/keywords/ACTION_FUNCTION_LAMBDA_RETURN.md
159
+ docs/keywords/ADVANCED_FEATURES.md
160
+ docs/keywords/ADVANCED_KEYWORDS.md
161
+ docs/keywords/ASYNC_AWAIT.md
162
+ docs/keywords/ASYNC_CONCURRENCY.md
163
+ docs/keywords/ASYNC_SYSTEM_FIXED.md
164
+ docs/keywords/ASYNC_SYSTEM_STATUS_REPORT.md
165
+ docs/keywords/BLOCKCHAIN_KEYWORDS.md
166
+ docs/keywords/BLOCKCHAIN_STATE.md
167
+ docs/keywords/CAPABILITY_VALIDATION.md
168
+ docs/keywords/COMMAND_audit.md
169
+ docs/keywords/COMMAND_buffer.md
170
+ docs/keywords/COMMAND_const.md
171
+ docs/keywords/COMMAND_defer.md
172
+ docs/keywords/COMMAND_elif.md
173
+ docs/keywords/COMMAND_enum.md
174
+ docs/keywords/COMMAND_gc.md
175
+ docs/keywords/COMMAND_inline.md
176
+ docs/keywords/COMMAND_native.md
177
+ docs/keywords/COMMAND_pattern.md
178
+ docs/keywords/COMMAND_restrict.md
179
+ docs/keywords/COMMAND_sandbox.md
180
+ docs/keywords/COMMAND_simd.md
181
+ docs/keywords/COMMAND_stream.md
182
+ docs/keywords/COMMAND_trail.md
183
+ docs/keywords/COMMAND_watch.md
184
+ docs/keywords/CONST.md
185
+ docs/keywords/CONTINUE.md
186
+ docs/keywords/DATA.md
187
+ docs/keywords/ERROR_HANDLING.md
188
+ docs/keywords/EVENTS_REACTIVE.md
189
+ docs/keywords/IF_ELIF_ELSE.md
190
+ docs/keywords/KEYWORD_TESTING_INDEX.md
191
+ docs/keywords/KEYWORD_TESTING_MASTER_LIST.md
192
+ docs/keywords/KEYWORD_TESTING_PROJECT_SUMMARY.md
193
+ docs/keywords/LET.md
194
+ docs/keywords/LOG.md
195
+ docs/keywords/MODIFIERS.md
196
+ docs/keywords/MODULE_SYSTEM.md
197
+ docs/keywords/PERFORMANCE.md
198
+ docs/keywords/PRINT_DEBUG.md
199
+ docs/keywords/RENDERER_UI.md
200
+ docs/keywords/SECURITY.md
201
+ docs/keywords/SPECIAL_KEYWORDS.md
202
+ docs/keywords/WHILE_FOR_EACH_IN.md
203
+ docs/keywords/features/10-PHASE_COMPLETE.md
204
+ docs/keywords/features/ADVANCED_FEATURES_IMPLEMENTATION.md
205
+ docs/keywords/features/ADVANCED_PARSER_FIX_SUMMARY.md
206
+ docs/keywords/features/ASYNC_OPTIMIZER.md
207
+ docs/keywords/features/AUDIT_COMPLETION_SUMMARY.md
208
+ docs/keywords/features/AUDIT_SECURITY_INTEGRATION.md
209
+ docs/keywords/features/BLOCKCHAIN_IMPLEMENTATION.md
210
+ docs/keywords/features/BLOCKCHAIN_PARSER_EVALUATOR_INTEGRATION.md
211
+ docs/keywords/features/COMPREHENSIVE_VERIFICATION_REPORT.md
212
+ docs/keywords/features/FIXES_SUMMARY.md
213
+ docs/keywords/features/FIX_ISSUES_5_6_SUMMARY.md
214
+ docs/keywords/features/FIX_SUMMARY.md
215
+ docs/keywords/features/IF_STATEMENT_PARSER_FIX.md
216
+ docs/keywords/features/IF_THEN_ELSE_IMPLEMENTATION.md
217
+ docs/keywords/features/IMPLEMENTATION_SUMMARY.md
218
+ docs/keywords/features/INTEGRATION_COMPLETE.md
219
+ docs/keywords/features/INTEGRATION_COMPLETE_SUMMARY.md
220
+ docs/keywords/features/KEYWORD_AFTER_DOT.md
221
+ docs/keywords/features/KEYWORD_AFTER_DOT_IMPLEMENTATION.md
222
+ docs/keywords/features/MAIN_ENTRY_POINT_IMPLEMENTATION.md
223
+ docs/keywords/features/MAIN_ENTRY_POINT_IMPLEMENTATION_STATUS.md
224
+ docs/keywords/features/MEMORY_POOL_USAGE_GUIDE.md
225
+ docs/keywords/features/MODULE_SYSTEM_IMPLEMENTATION_SUMMARY.md
226
+ docs/keywords/features/PERFORMANCE_FEATURES_SUMMARY.md
227
+ docs/keywords/features/PHASE_10_COMPLETION.md
228
+ docs/keywords/features/PHASE_1_2_SUMMARY.md
229
+ docs/keywords/features/PHASE_2_JIT_COMPLETE.md
230
+ docs/keywords/features/PHASE_3_OPTIMIZER_COMPLETE.md
231
+ docs/keywords/features/PHASE_4_CACHE_COMPLETE.md
232
+ docs/keywords/features/PHASE_4_INTEGRATION_VERIFIED.md
233
+ docs/keywords/features/PHASE_5_COMPLETION_REPORT.md
234
+ docs/keywords/features/PHASE_5_REGISTER_VM_COMPLETE.md
235
+ docs/keywords/features/PHASE_6_COMPLETION_REPORT.md
236
+ docs/keywords/features/PHASE_6_PARALLEL_VM_COMPLETE.md
237
+ docs/keywords/features/PHASE_7_MEMORY_MANAGEMENT_COMPLETE.md
238
+ docs/keywords/features/PROFILER_USAGE_GUIDE.md
239
+ docs/keywords/features/REQUIRE_TOLERANCE_IMPLEMENTATION.md
240
+ docs/keywords/features/SEAL_IMPLEMENTATION_SUMMARY.md
241
+ docs/keywords/features/SECURITY_IMPLEMENTATION.md
242
+ docs/keywords/features/SECURITY_IMPLEMENTATION_SUMMARY.md
243
+ docs/keywords/features/SESSION_COMPLETION_SUMMARY.md
244
+ docs/keywords/features/SESSION_PARSER_FIX_SUMMARY.md
245
+ docs/keywords/features/SSA_AND_REGISTER_ALLOCATION.md
246
+ docs/keywords/features/TEST_SUITE_DOCUMENTATION.md
247
+ docs/keywords/features/VERIFY_ENHANCEMENT_GUIDE.md
248
+ docs/keywords/features/VERIFY_IMPLEMENTATION_SUMMARY.md
249
+ docs/keywords/features/VM_CONNECTION_VERIFIED.md
250
+ docs/keywords/features/VM_CRITICAL_ISSUES_FIXED.md
251
+ docs/keywords/features/VM_ENHANCEMENT_MASTER_LIST.md
252
+ docs/keywords/features/VM_INTEGRATION_COMPLETE.md
253
+ docs/keywords/features/VM_INTEGRATION_SUMMARY.md
254
+ docs/keywords/features/VM_OPTIMIZATION_PHASE_8_MASTER_LIST.md
255
+ docs/keywords/features/ZEXUS_IN_ACTION.md
256
+ docs/keywords/features/evaluator_export_compiler_summary.md
257
+ docs/keywords/features/installation_paths_summary.md
258
+ docs/keywords/features/module_cache.md
259
+ docs/keywords/features/parser_fix_summary.md
260
+ docs/keywords/features/parsing_fixes_summary.md
261
+ copilot/fix-issues-and-documentation
262
+ docs/profiler/PROFILER_GUIDE.md
263
+ docs/stdlib/README.md
264
+ main
265
+ examples/MAIN_ENTRY_POINT_EXAMPLES.md
266
+ examples/action_literal_test.zx
267
+ examples/daemon_example.zx
268
+ examples/debug_detailed.zx
269
+ examples/debug_environment.zx
270
+ examples/debug_functions.zx
271
+ examples/debug_parser_detailed.zx
272
+ examples/exit_program_example.zx
273
+ examples/explicit_assignment_test.zx
274
+ examples/import_main_module.zx
275
+ examples/is_main_helper.zx
276
+ examples/main_entry_point.zx
277
+ examples/minimal_function_test.zx
278
+ examples/server_with_run.zx
279
+ examples/simple_action_test.zx
280
+ examples/simple_run_example.zx
281
+ examples/simple_test.zx
282
+ examples/test.zx
283
+ examples/token_contract.zx
284
+ examples/ziver_chain_test.zx
285
+ linguist-submission/SUBMISSION_INSTRUCTIONS.md
286
+ linguist-submission/grammars.yml
287
+ linguist-submission/languages.yml
288
+ linguist-submission/zexus.tmLanguage.json
289
+ linguist-submission/samples/basic.zx
290
+ linguist-submission/samples/blockchain.zx
291
+ linguist-submission/samples/security.zx
292
+ renderer/__init__.py
293
+ renderer/backend.py
294
+ renderer/canvas.py
295
+ renderer/color_system.py
296
+ renderer/graphics.py
297
+ renderer/layout.py
298
+ renderer/main_renderer.py
299
+ renderer/painter.py
300
+ samples/basic.zx
301
+ samples/blockchain.zx
302
+ samples/security.zx
303
+ scripts/__init__.py.bak
304
+ scripts/__main__.py
305
+ scripts/check_compiler_parser.py
306
+ scripts/check_lexer_module.py
307
+ scripts/check_parser_config.py
308
+ scripts/check_parser_differences.py
309
+ scripts/check_parser_setup.py
310
+ scripts/check_tokens.py
311
+ scripts/compare_lexers.py
312
+ scripts/compile_repro.py
313
+ scripts/debug_closure.py
314
+ scripts/debug_closure_detailed.py
315
+ scripts/debug_closure_full.py
316
+ scripts/debug_closure_instrumented.py
317
+ scripts/debug_function_params.py
318
+ scripts/debug_map_parsing.py
319
+ scripts/debug_module.py
320
+ scripts/debug_module_ast.py
321
+ scripts/debug_parser.py
322
+ scripts/debug_parser_function.py
323
+ scripts/debug_phase10_params.py
324
+ scripts/debug_tokens.py
325
+ scripts/final_validation.py
326
+ scripts/fixed_parser.py
327
+ scripts/inspect_closure_bc.py
328
+ scripts/integration_demo.py
329
+ scripts/investigate_compiler.py
330
+ scripts/lexer_fixed.py
331
+ scripts/main.py
332
+ scripts/main.spec
333
+ scripts/parser_fixed.py
334
+ scripts/run_repro.py
335
+ scripts/run_zexus_tests.py
336
+ scripts/temp_head.py
337
+ scripts/temp_import.py
338
+ scripts/test_basic.txt
339
+ scripts/test_log.txt
340
+ scripts/test_minimal.txt
341
+ scripts/test_results.txt
342
+ scripts/test_working.txt
343
+ scripts/tmp_all.zx
344
+ scripts/tmp_arrow_test.py
345
+ scripts/tmp_concat_func.zx
346
+ scripts/tmp_debug_print.zx
347
+ scripts/tmp_func.zx
348
+ scripts/tmp_map.zx
349
+ scripts/tmp_parse_test.py
350
+ scripts/tmp_run.py
351
+ scripts/token.py
352
+ scripts/verify_integration.py
353
+ scripts/zexus_ast.py
354
+ scripts/zexus_compiler.spec
355
+ scripts/zexus_token.py
356
+ scripts/zpm.py
357
+ scripts/zx-luncher.py
358
+ src/README.md
359
+ src/tests/run_zexus_tests.py
360
+ src/tests/test_all_phases.zx
361
+ src/tests/test_blockchain_features.zx
362
+ src/tests/test_complexity_features.zx
363
+ src/tests/test_core_integration.py
364
+ src/tests/test_phase10_ecosystem.zx
365
+ src/tests/test_phase1_modifiers.zx
366
+ src/tests/test_phase2_plugins.zx
367
+ src/tests/test_phase3_security.zx
368
+ src/tests/test_phase4_vfs.zx
369
+ src/tests/test_phase5_types.zx
370
+ src/tests/test_phase6_metaprogramming.zx
371
+ src/tests/test_phase7_optimization.zx
372
+ src/tests/test_phase9_advanced_types.zx
373
+ src/tests/test_security_features.py
374
+ src/tests/test_security_features.zx
375
+ src/tests/test_simple_zx.zx
376
+ src/tests/test_verification_simple.zx
377
+ src/zexus/__init__.py
378
+ src/zexus/__main__.py
379
+ src/zexus/advanced_types.py
380
+ src/zexus/builtin_modules.py
381
+ src/zexus/builtin_plugins.py
382
+ src/zexus/capability_system.py
383
+ src/zexus/compare_interpreter_compiler.py
384
+ src/zexus/complexity_system.py
385
+ src/zexus/concurrency_system.py
386
+ src/zexus/config.py
387
+ src/zexus/crypto_bridge.py
388
+ src/zexus/dependency_injection.py
389
+ src/zexus/ecosystem.py
390
+ src/zexus/environment.py
391
+ src/zexus/environment_manager.py
392
+ src/zexus/error_reporter.py
393
+ src/zexus/evaluator_original.py
394
+ src/zexus/external_bridge.py
395
+ src/zexus/find_affected_imports.sh
396
+ src/zexus/hybrid_orchestrator.py
397
+ src/zexus/lexer.py
398
+ src/zexus/logging.py
399
+ src/zexus/metaprogramming.py
400
+ src/zexus/module_cache.py
401
+ src/zexus/module_manager.py
402
+ src/zexus/object.py
403
+ src/zexus/optimization.py
404
+ src/zexus/persistence.py
405
+ src/zexus/plugin_system.py
406
+ src/zexus/policy_engine.py
407
+ src/zexus/purity_system.py
408
+ src/zexus/search_old_imports.sh
409
+ src/zexus/security.py
410
+ src/zexus/stack_trace.py
411
+ src/zexus/stdlib_integration.py
412
+ src/zexus/strategy_recovery.py
413
+ src/zexus/syntax_validator.py
414
+ src/zexus/type_system.py
415
+ src/zexus/validation_system.py
416
+ src/zexus/virtual_filesystem.py
417
+ src/zexus/zexus_ast.py
418
+ src/zexus/zexus_token.py
419
+ src/zexus.egg-info/PKG-INFO
420
+ src/zexus.egg-info/SOURCES.txt
421
+ src/zexus.egg-info/dependency_links.txt
422
+ src/zexus.egg-info/entry_points.txt
423
+ src/zexus.egg-info/not-zip-safe
424
+ src/zexus.egg-info/requires.txt
425
+ src/zexus.egg-info/top_level.txt
426
+ src/zexus/blockchain/__init__.py
427
+ src/zexus/blockchain/crypto.py
428
+ src/zexus/blockchain/ledger.py
429
+ src/zexus/blockchain/transaction.py
430
+ src/zexus/cli/__init__.py
431
+ src/zexus/cli/main.py
432
+ src/zexus/cli/zpm.py
433
+ src/zexus/compiler/__init__.py
434
+ src/zexus/compiler/bytecode.py
435
+ src/zexus/compiler/compat_runtime.py
436
+ src/zexus/compiler/lexer.py
437
+ src/zexus/compiler/parser.py
438
+ src/zexus/compiler/semantic.py
439
+ src/zexus/compiler/zexus_ast.py
440
+ src/zexus/evaluator/__init__.py
441
+ src/zexus/evaluator/bytecode_compiler.py
442
+ src/zexus/evaluator/core.py
443
+ src/zexus/evaluator/expressions.py
444
+ src/zexus/evaluator/functions.py
445
+ src/zexus/evaluator/integration.py
446
+ src/zexus/evaluator/statements.py
447
+ src/zexus/evaluator/utils.py
448
+ copilot/fix-issues-and-documentation
449
+ src/zexus/lsp/__init__.py
450
+ src/zexus/lsp/completion_provider.py
451
+ src/zexus/lsp/definition_provider.py
452
+ src/zexus/lsp/hover_provider.py
453
+ src/zexus/lsp/server.py
454
+ src/zexus/lsp/symbol_provider.py
455
+ main
456
+ src/zexus/parser/__init__.py
457
+ src/zexus/parser/integration.py
458
+ src/zexus/parser/parser.py
459
+ src/zexus/parser/strategy_context.py
460
+ src/zexus/parser/strategy_structural.py
461
+ copilot/fix-issues-and-documentation
462
+ src/zexus/profiler/__init__.py
463
+ src/zexus/profiler/profiler.py
464
+ main
465
+ src/zexus/runtime/__init__.py
466
+ src/zexus/runtime/async_runtime.py
467
+ src/zexus/stdlib/__init__.py
468
+ src/zexus/stdlib/blockchain.py
469
+ src/zexus/stdlib/crypto.py
470
+ src/zexus/stdlib/datetime.py
471
+ src/zexus/stdlib/fs.py
472
+ src/zexus/stdlib/http.py
473
+ src/zexus/stdlib/json_module.py
474
+ src/zexus/vm/__init__.py
475
+ src/zexus/vm/async_optimizer.py
476
+ src/zexus/vm/bytecode.py
477
+ src/zexus/vm/bytecode_converter.py
478
+ src/zexus/vm/cache.py
479
+ src/zexus/vm/jit.py
480
+ src/zexus/vm/memory_manager.py
481
+ src/zexus/vm/memory_pool.py
482
+ src/zexus/vm/optimizer.py
483
+ src/zexus/vm/parallel_vm.py
484
+ src/zexus/vm/peephole_optimizer.py
485
+ src/zexus/vm/profiler.py
486
+ src/zexus/vm/register_allocator.py
487
+ src/zexus/vm/register_vm.py
488
+ src/zexus/vm/ssa_converter.py
489
+ src/zexus/vm/vm.py
490
+ src/zexus/zpm/__init__.py
491
+ src/zexus/zpm/installer.py
492
+ src/zexus/zpm/package_manager.py
493
+ src/zexus/zpm/publisher.py
494
+ src/zexus/zpm/registry.py
495
+ syntaxes/zexus.tmLanguage.json
496
+ tests/TEST_RESULTS.md
497
+ tests/comprehensive_test.zx
498
+ tests/conftest.py
499
+ tests/debug_print_parse.py
500
+ tests/debug_tokens.py
501
+ tests/final_integration_test.zx
502
+ tests/test_async_system_integration.py
503
+ tests/test_full_integration.py
504
+ tests/test_global.zx
505
+ tests/test_integration.py
506
+ tests/test_module_system.py
507
+ tests/test_simple_if.zx
508
+ tests/builtin_modules/README.md
509
+ tests/builtin_modules/test_crypto_basic.zx
510
+ tests/examples/clean_test.zx
511
+ tests/examples/debug.zx
512
+ tests/examples/debug_test.zx
513
+ tests/examples/debug_try_catch.zx
514
+ tests/examples/let_test.zx
515
+ tests/examples/math.zx
516
+ tests/examples/math_simple.zx
517
+ tests/examples/minimal_test.zx
518
+ tests/examples/module_registry.zx
519
+ tests/examples/no_comments_test.zx
520
+ tests/examples/repro_issue2.zx
521
+ tests/examples/repro_issue3.zx
522
+ tests/examples/repro_issue4.zx
523
+ tests/examples/repro_issue6.zx
524
+ tests/examples/simple1.zx
525
+ tests/examples/simple2.zx
526
+ tests/examples/simple3.zx
527
+ tests/examples/simple_let_test.zx
528
+ tests/examples/simple_test.zx
529
+ tests/fixtures/inline_int.zx
530
+ tests/fixtures/inline_math.zx
531
+ tests/fixtures/inline_math2.zx
532
+ tests/fixtures/print_float_literal.zx
533
+ tests/fixtures/print_one.zx
534
+ tests/fixtures/use_import.zx
535
+ tests/fixtures/use_only.zx
536
+ tests/fixtures/modules/a.zx
537
+ tests/fixtures/modules/b.zx
538
+ tests/fixtures/modules/mathmod.zx
539
+ tests/integration/test_advanced_features_complete.zx
540
+ tests/integration/test_audit_command.zx
541
+ tests/integration/test_blockchain_integration.zx
542
+ tests/integration/test_brace.zx
543
+ tests/integration/test_builtins_simple.zx
544
+ tests/integration/test_capability_simple.zx
545
+ tests/integration/test_concat.zx
546
+ tests/integration/test_concat_undefined.zx
547
+ tests/integration/test_dependency_injection.zx
548
+ tests/integration/test_diag.zx
549
+ tests/integration/test_escape.zx
550
+ tests/integration/test_eval.zx
551
+ tests/integration/test_fix.zx
552
+ tests/integration/test_fix_circular.zx
553
+ tests/integration/test_func_decl.zx
554
+ tests/integration/test_func_expr.zx
555
+ tests/integration/test_func_literal.zx
556
+ tests/integration/test_function_call.zx
557
+ tests/integration/test_hash_token.zx
558
+ tests/integration/test_integration_simple.zx
559
+ tests/integration/test_issue3_and_4.zx
560
+ tests/integration/test_issue3_print_concat.zx
561
+ tests/integration/test_issue5_type_alias.zx
562
+ tests/integration/test_issue6_using.zx
563
+ tests/integration/test_issue7_packages.zx
564
+ tests/integration/test_issues_comprehensive.zx
565
+ tests/integration/test_map.zx
566
+ tests/integration/test_map_access.zx
567
+ tests/integration/test_math_core.zx
568
+ tests/integration/test_minimal2.zx
569
+ tests/integration/test_minimal_phase1.zx
570
+ tests/integration/test_module_basic.zx
571
+ tests/integration/test_module_debug.zx
572
+ tests/integration/test_module_simple.zx
573
+ tests/integration/test_no_comments.zx
574
+ tests/integration/test_package_hierarchy.zx
575
+ tests/integration/test_package_simple.zx
576
+ tests/integration/test_persistence_and_memory.zx
577
+ tests/integration/test_protect_feature.zx
578
+ tests/integration/test_seal_feature.zx
579
+ tests/integration/test_simple.zx
580
+ tests/integration/test_simple_assign.zx
581
+ tests/integration/test_simple_fix.zx
582
+ tests/integration/test_simple_fixes.zx
583
+ tests/integration/test_simple_func.zx
584
+ tests/integration/test_simple_print.zx
585
+ tests/integration/test_stdlib.zx
586
+ tests/integration/test_try_catch_simple.zx
587
+ tests/integration/test_try_syntax.zx
588
+ tests/integration/test_try_traditional.zx
589
+ tests/integration/test_type_alias_advanced.zx
590
+ tests/integration/test_type_alias_errors.zx
591
+ tests/integration/test_using_file.zx
592
+ tests/integration/test_watch.zx
593
+ tests/integration/test_watch_clean.zx
594
+ tests/integration/test_watch_feature.zx
595
+ tests/integration/test_working.zx
596
+ tests/integration/test_working_fixed.zx
597
+ tests/integration/core/simple_test.zx
598
+ tests/integration/core/test_all_comparisons.zx
599
+ tests/integration/core/test_all_comparisons_fixed.zx
600
+ tests/integration/core/test_assignment_simple.zx
601
+ tests/integration/core/test_better_control.zx
602
+ tests/integration/core/test_boolean_only.zx
603
+ tests/integration/core/test_booleans.zx
604
+ tests/integration/core/test_comparisons.zx
605
+ tests/integration/core/test_control_flow.zx
606
+ tests/integration/core/test_control_flow_fixed.zx
607
+ tests/integration/core/test_core.zx
608
+ tests/integration/core/test_data_structures.zx
609
+ tests/integration/core/test_datetime_math.zx
610
+ tests/integration/core/test_debug_error.zx
611
+ tests/integration/core/test_edge_cases.zx
612
+ tests/integration/core/test_explicit.zx
613
+ tests/integration/core/test_file_io.zx
614
+ tests/integration/core/test_final_control.zx
615
+ tests/integration/core/test_float.zx
616
+ tests/integration/core/test_map.zx
617
+ tests/integration/core/test_minimal.zx
618
+ tests/integration/core/test_modulo.zx
619
+ tests/integration/core/test_multi_language_fixed.zx
620
+ tests/integration/core/test_print_basic.zx
621
+ tests/integration/core/test_print_single.zx
622
+ tests/integration/core/test_simple.zx
623
+ tests/integration/core/test_simple_control.zx
624
+ tests/integration/core/test_simple_expressions.zx
625
+ tests/integration/core/test_syntax_discovery.zx
626
+ tests/integration/core/test_ui.zx
627
+ tests/integration/core/test_vars.zx
628
+ tests/integration/core/test_working_control.zx
629
+ tests/integration/core/test_working_syntax.zx
630
+ tests/integration/features/test_daemonize.zx
631
+ tests/integration/features/test_enhanced_run.zx
632
+ tests/integration/features/test_hot_reload.zx
633
+ tests/integration/features/test_hot_reload_callback.zx
634
+ tests/integration/features/test_hot_reload_simple.zx
635
+ tests/integration/features/test_lifecycle_hooks.zx
636
+ tests/integration/features/test_main_args_complete.zx
637
+ tests/integration/features/test_module_introspection.zx
638
+ tests/integration/features/test_phase1_features.zx
639
+ tests/integration/features/test_production_features.zx
640
+ tests/integration/features/test_run_with_args.zx
641
+ tests/integration/features/test_schedule.zx
642
+ tests/integration/features/test_schedule_multi.zx
643
+ tests/integration/features/test_schedule_simple.zx
644
+ tests/integration/features/test_signal_handlers.zx
645
+ tests/integration/features/test_signal_handlers_enhanced.zx
646
+ tests/integration/features/test_simple_features.zx
647
+ tests/integration/keywords/if_test.zx
648
+ tests/integration/keywords/test_action_fix.zx
649
+ tests/integration/keywords/test_actionliteral_eval.zx
650
+ tests/integration/keywords/test_all_lambdas.zx
651
+ tests/integration/keywords/test_args.zx
652
+ tests/integration/keywords/test_args_brace.zx
653
+ tests/integration/keywords/test_args_if.zx
654
+ tests/integration/keywords/test_bare_function.zx
655
+ tests/integration/keywords/test_if.zx
656
+ tests/integration/keywords/test_if_else.zx
657
+ tests/integration/keywords/test_if_simple.zx
658
+ tests/integration/keywords/test_if_syntax.zx
659
+ tests/integration/keywords/test_lambda_and_chains.py
660
+ tests/integration/keywords/test_lambda_and_chains_pytest.py
661
+ tests/integration/keywords/test_let_complex.zx
662
+ tests/integration/keywords/test_let_function_call.zx
663
+ tests/integration/keywords/test_let_in_if.zx
664
+ tests/integration/keywords/test_loops.zx
665
+ tests/integration/keywords/test_while_simple.zx
666
+ tests/keyword_tests/README.md
667
+ tests/keyword_tests/run_keyword_test.sh
668
+ tests/keyword_tests/test_module_helper.zx
669
+ tests/keyword_tests/complex/test_advanced_complex.zx
670
+ tests/keyword_tests/complex/test_async_complex.zx
671
+ tests/keyword_tests/complex/test_blockchain_complex.zx
672
+ tests/keyword_tests/complex/test_capability_complex.zx
673
+ tests/keyword_tests/complex/test_const_complex.zx
674
+ tests/keyword_tests/complex/test_continue_complex.zx
675
+ tests/keyword_tests/complex/test_error_handling_complex.zx
676
+ tests/keyword_tests/complex/test_events_complex.zx
677
+ tests/keyword_tests/complex/test_functions_complex.zx
678
+ tests/keyword_tests/complex/test_if_complex.zx
679
+ tests/keyword_tests/complex/test_io_modules_complex.zx
680
+ tests/keyword_tests/complex/test_let_complex.zx
681
+ tests/keyword_tests/complex/test_modifiers_complex.zx
682
+ tests/keyword_tests/complex/test_module_complex.zx
683
+ tests/keyword_tests/complex/test_parallel_stress.zx
684
+ tests/keyword_tests/complex/test_performance_complex.zx
685
+ tests/keyword_tests/complex/test_register_stress.zx
686
+ tests/keyword_tests/complex/test_renderer_complex.zx
687
+ tests/keyword_tests/complex/test_renderer_ops_complex.zx
688
+ tests/keyword_tests/complex/test_security_complex.zx
689
+ tests/keyword_tests/complex/test_special_complex.zx
690
+ tests/keyword_tests/complex/test_while_for_each_complex.zx
691
+ tests/keyword_tests/easy/test_advanced_easy.zx
692
+ tests/keyword_tests/easy/test_async_easy.zx
693
+ tests/keyword_tests/easy/test_async_easy.zx.old
694
+ tests/keyword_tests/easy/test_blockchain_easy.zx
695
+ tests/keyword_tests/easy/test_capability_easy.zx
696
+ tests/keyword_tests/easy/test_const_easy.zx
697
+ tests/keyword_tests/easy/test_continue_easy.zx
698
+ tests/keyword_tests/easy/test_error_handling_easy.zx
699
+ tests/keyword_tests/easy/test_events_easy.zx
700
+ tests/keyword_tests/easy/test_functions_easy.zx
701
+ tests/keyword_tests/easy/test_if_easy.zx
702
+ tests/keyword_tests/easy/test_io_modules_easy.zx
703
+ tests/keyword_tests/easy/test_let_easy.zx
704
+ tests/keyword_tests/easy/test_loops_easy.zx
705
+ tests/keyword_tests/easy/test_modifiers_easy.zx
706
+ tests/keyword_tests/easy/test_module_easy.zx
707
+ tests/keyword_tests/easy/test_parallel_basic.zx
708
+ tests/keyword_tests/easy/test_performance_easy.zx
709
+ tests/keyword_tests/easy/test_phase13_easy.zx
710
+ tests/keyword_tests/easy/test_register_basic.zx
711
+ tests/keyword_tests/easy/test_renderer_easy.zx
712
+ tests/keyword_tests/easy/test_renderer_ops_easy.zx
713
+ tests/keyword_tests/easy/test_security_easy.zx
714
+ tests/keyword_tests/easy/test_special_easy.zx
715
+ tests/keyword_tests/easy/test_while_for_each_easy.zx
716
+ tests/keyword_tests/medium/test_advanced_medium.zx
717
+ tests/keyword_tests/medium/test_async_medium.zx
718
+ tests/keyword_tests/medium/test_blockchain_medium.zx
719
+ tests/keyword_tests/medium/test_capability_medium.zx
720
+ tests/keyword_tests/medium/test_const_medium.zx
721
+ tests/keyword_tests/medium/test_continue_medium.zx
722
+ tests/keyword_tests/medium/test_error_handling_medium.zx
723
+ tests/keyword_tests/medium/test_events_medium.zx
724
+ tests/keyword_tests/medium/test_functions_medium.zx
725
+ tests/keyword_tests/medium/test_if_medium.zx
726
+ tests/keyword_tests/medium/test_io_modules_medium.zx
727
+ tests/keyword_tests/medium/test_let_medium.zx
728
+ tests/keyword_tests/medium/test_modifiers_medium.zx
729
+ tests/keyword_tests/medium/test_module_medium.zx
730
+ tests/keyword_tests/medium/test_parallel_advanced.zx
731
+ tests/keyword_tests/medium/test_performance_medium.zx
732
+ tests/keyword_tests/medium/test_register_advanced.zx
733
+ tests/keyword_tests/medium/test_renderer_medium.zx
734
+ tests/keyword_tests/medium/test_renderer_ops_medium.zx
735
+ tests/keyword_tests/medium/test_security_medium.zx
736
+ tests/keyword_tests/medium/test_special_medium.zx
737
+ tests/keyword_tests/medium/test_while_for_each_medium.zx
738
+ tests/repro/repro_enum.zx
739
+ tests/repro/repro_lambda.zx
740
+ tests/repro/repro_map.zx
741
+ tests/repro/repro_protocol.zx
742
+ tests/unit/simple_test.py
743
+ tests/unit/test_advanced_types.py
744
+ tests/unit/test_advanced_vs_traditional.py
745
+ tests/unit/test_audit_components.py
746
+ tests/unit/test_audit_enhanced.py
747
+ tests/unit/test_basic.py
748
+ tests/unit/test_capability_system.py
749
+ tests/unit/test_concurrent_execution.py
750
+ tests/unit/test_convenience_advanced_features.py
751
+ tests/unit/test_ecosystem.py
752
+ tests/unit/test_edge_cases.py
753
+ tests/unit/test_exact_phase10.py
754
+ tests/unit/test_hybrid.py
755
+ tests/unit/test_lexer_directly.py
756
+ tests/unit/test_map_fix.py
757
+ tests/unit/test_map_only.py
758
+ tests/unit/test_memory_leakage.py
759
+ tests/unit/test_metaprogramming.py
760
+ tests/unit/test_modifiers_evaluator.py
761
+ tests/unit/test_modifiers_evaluator_simple.py
762
+ tests/unit/test_modifiers_parsing.py
763
+ tests/unit/test_optimization.py
764
+ tests/unit/test_parameter_binding.py
765
+ tests/unit/test_parser_debug.py
766
+ tests/unit/test_performance.py
767
+ tests/unit/test_performance_features.py
768
+ tests/unit/test_plugin_system.py
769
+ tests/unit/test_restrict_trail_sandbox.py
770
+ tests/unit/test_runner.py
771
+ tests/unit/test_seal_components.py
772
+ tests/unit/test_type_system.py
773
+ tests/unit/test_virtual_filesystem.py
774
+ tests/unit/test_zexus_phases.py
775
+ tests/unit/test_zexus_program.py
776
+ tests/vm/benchmark_cache.py
777
+ tests/vm/benchmark_memory.py
778
+ tests/vm/benchmark_parallel_vm.py
779
+ tests/vm/benchmark_register_vm.py
780
+ tests/vm/test_all_optimizations_integration.py
781
+ tests/vm/test_async_optimizer.py
782
+ tests/vm/test_async_verification.py
783
+ tests/vm/test_blockchain_opcodes.py
784
+ tests/vm/test_cache.py
785
+ tests/vm/test_comprehensive_vm_verification.py
786
+ tests/vm/test_integration_all_phases.py
787
+ tests/vm/test_integration_simple.py
788
+ tests/vm/test_jit_compilation.py
789
+ tests/vm/test_jit_vm_integration.py
790
+ tests/vm/test_memory_manager.py
791
+ tests/vm/test_memory_pool.py
792
+ tests/vm/test_optimizer.py
793
+ tests/vm/test_parallel_vm.py
794
+ tests/vm/test_peephole_optimizer.py
795
+ tests/vm/test_profiler.py
796
+ tests/vm/test_register_allocator.py
797
+ tests/vm/test_register_vm.py
798
+ tests/vm/test_ssa_converter.py
799
+ tests/vm/test_vm_async_integration.py
800
+ tests/vm/test_vm_memory_pool_integration.py
801
+ tests/vm/test_vm_peephole_integration.py
802
+ tests/vm/test_vm_ssa_integration.py
803
+ vscode-extension/.gitignore
804
+ vscode-extension/README.md
805
+ vscode-extension/language-configuration.json
806
+ vscode-extension/package.json
807
+ vscode-extension/tsconfig.json
808
+ vscode-extension/snippets/zexus.json
809
+ vscode-extension/src/extension.ts
810
+ vscode-extension/syntaxes/zexus.tmLanguage.json
811
+ zexus-syntax/install-syntax.sh
812
+ zexus-syntax/language-configuration.json
813
+ zexus-syntax/package.json
814
+ zexus-syntax/zexus-language-0.1.0.vsix.zip
815
+ zexus-syntax/syntaxes/zexus.tmLanguage.json
816
+ zpm_modules/zexus-blockchain/README.md
817
+ zpm_modules/zexus-blockchain/blockchain.zx
818
+ zpm_modules/zexus-blockchain/index.zx
819
+ zpm_modules/zexus-blockchain/zexus.json
820
+ zpm_modules/zexus-blockchain/blockchain/bridge.zx
821
+ zpm_modules/zexus-blockchain/blockchain/consensus.zx
822
+ zpm_modules/zexus-blockchain/blockchain/contract.zx
823
+ zpm_modules/zexus-blockchain/blockchain/core.zx
824
+ zpm_modules/zexus-blockchain/blockchain/evolution.zx
825
+ zpm_modules/zexus-blockchain/blockchain/explainable.zx
826
+ zpm_modules/zexus-blockchain/blockchain/oracle.zx
827
+ zpm_modules/zexus-blockchain/blockchain/p2p.zx
828
+ zpm_modules/zexus-blockchain/blockchain/patching.zx
829
+ zpm_modules/zexus-blockchain/blockchain/seb_defi.zx
830
+ zpm_modules/zexus-blockchain/blockchain/transaction.zx
831
+ zpm_modules/zexus-blockchain/blockchain/zksnarks.zx
832
+ zpm_modules/zexus-core/import.zx
833
+ zpm_modules/zexus-core/index.zx
834
+ zpm_modules/zexus-core/string.zx
835
+ zpm_modules/zexus-math/README.md
836
+ zpm_modules/zexus-math/index.zx
837
+ zpm_modules/zexus-math/math.zx
838
+ zpm_modules/zexus-math/zexus.json
839
+ zpm_modules/zexus-math/examples/advanced_calculator.zx
840
+ zpm_modules/zexus-math/examples/expert_calculator.zx
841
+ zpm_modules/zexus-math/examples/unified_usage.zx
842
+ zpm_modules/zexus-math/math/advanced_linalg.zx
843
+ zpm_modules/zexus-math/math/async.zx
844
+ zpm_modules/zexus-math/math/calculus.zx
845
+ zpm_modules/zexus-math/math/complex.zx
846
+ zpm_modules/zexus-math/math/core.zx
847
+ zpm_modules/zexus-math/math/crypto.zx
848
+ zpm_modules/zexus-math/math/diffeq.zx
849
+ zpm_modules/zexus-math/math/geometric.zx
850
+ zpm_modules/zexus-math/math/interpolation.zx
851
+ zpm_modules/zexus-math/math/linalg.zx
852
+ zpm_modules/zexus-math/math/ml.zx
853
+ zpm_modules/zexus-math/math/numerical.zx
854
+ zpm_modules/zexus-math/math/optimization.zx
855
+ zpm_modules/zexus-math/math/performance.zx
856
+ zpm_modules/zexus-math/math/physics.zx
857
+ zpm_modules/zexus-math/math/renderer.zx
858
+ zpm_modules/zexus-math/math/signal.zx
859
+ zpm_modules/zexus-math/math/special.zx
860
+ zpm_modules/zexus-math/math/stats.zx
861
+ zpm_modules/zexus-math/math/symbolic.zx
862
+ zpm_modules/zexus-math/math/validation.zx
863
+ zpm_modules/zexus-network/README.md
864
+ zpm_modules/zexus-network/index.zx
865
+ zpm_modules/zexus-network/network.zx
866
+ zpm_modules/zexus-network/zexus.json
867
+ zpm_modules/zexus-network/examples/http_client.zx
868
+ zpm_modules/zexus-network/examples/network_demo.zx
869
+ zpm_modules/zexus-network/examples/websocket_chat.zx
870
+ zpm_modules/zexus-network/network/core.zx
871
+ zpm_modules/zexus-network/network/dns.zx
872
+ zpm_modules/zexus-network/network/http.zx
873
+ zpm_modules/zexus-network/network/security.zx
874
+ zpm_modules/zexus-network/network/server.zx
875
+ zpm_modules/zexus-network/network/socket.zx
876
+ zpm_modules/zexus-network/network/websocket.zx