zexus 1.6.2 → 1.6.3
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 +165 -5
- package/package.json +1 -1
- package/src/zexus/__init__.py +1 -1
- package/src/zexus/access_control_system/__init__.py +38 -0
- package/src/zexus/access_control_system/access_control.py +237 -0
- package/src/zexus/cli/main.py +1 -1
- package/src/zexus/cli/zpm.py +1 -1
- package/src/zexus/debug_sanitizer.py +250 -0
- package/src/zexus/error_reporter.py +22 -2
- package/src/zexus/evaluator/core.py +7 -2
- package/src/zexus/evaluator/expressions.py +116 -57
- package/src/zexus/evaluator/functions.py +586 -170
- package/src/zexus/evaluator/resource_limiter.py +291 -0
- package/src/zexus/evaluator/statements.py +31 -3
- package/src/zexus/evaluator/utils.py +12 -6
- package/src/zexus/lsp/server.py +1 -1
- package/src/zexus/object.py +21 -2
- package/src/zexus/parser/parser.py +39 -1
- package/src/zexus/parser/strategy_context.py +29 -4
- package/src/zexus/parser/strategy_structural.py +12 -4
- package/src/zexus/persistence.py +105 -6
- package/src/zexus/security_enforcement.py +237 -0
- package/src/zexus/stdlib/fs.py +120 -22
- package/src/zexus/zpm/package_manager.py +1 -1
- package/src/zexus.egg-info/PKG-INFO +499 -13
- package/src/zexus.egg-info/SOURCES.txt +242 -152
|
@@ -1,44 +1,41 @@
|
|
|
1
1
|
.gitattributes
|
|
2
2
|
.gitignore
|
|
3
|
-
ALL_ISSUES_FIXED_FINAL_REPORT.md
|
|
4
3
|
CHANGELOG.md
|
|
5
|
-
CONTINUE_IMPLEMENTATION_SUMMARY.md
|
|
6
|
-
DEV_SCRIPTS_README.md
|
|
7
|
-
FRIEND_PROOF.md
|
|
8
4
|
LICENSE
|
|
9
|
-
|
|
10
|
-
PUBLISH_TO_PYPI.md
|
|
11
|
-
QUESTIONS_ANSWERED.md
|
|
5
|
+
PUBLISH_TO_NPM.md
|
|
12
6
|
README.md
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
7
|
+
SECURITY_ACTION_PLAN.md
|
|
8
|
+
SECURITY_QUICK_REFERENCE.md
|
|
9
|
+
SECURITY_REMEDIATION_COMPLETE.md
|
|
10
|
+
VULNERABILITY_FINDINGS.md
|
|
11
|
+
VULNERABILITY_TEST_RESULTS.md
|
|
12
|
+
any.zx
|
|
13
|
+
check_verify_ast.py
|
|
14
|
+
comprehensive_test.zx
|
|
20
15
|
crypto.zx
|
|
21
|
-
|
|
22
|
-
|
|
16
|
+
debug_persist_ultimate.zx
|
|
17
|
+
demo_backend_server.zx
|
|
18
|
+
demo_backend_simple.zx
|
|
19
|
+
demo_simple_working.zx
|
|
23
20
|
dynamic.zx
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
generated.zx
|
|
27
|
-
gitignore
|
|
21
|
+
dynamic_math.zx
|
|
22
|
+
fix_type_checks.py
|
|
28
23
|
index.zx
|
|
29
24
|
install.sh
|
|
30
|
-
|
|
25
|
+
package.json
|
|
31
26
|
pyproject.toml
|
|
32
27
|
pytest.ini
|
|
33
|
-
script.py
|
|
34
28
|
setup.cfg
|
|
35
29
|
setup.py
|
|
36
30
|
setup_stdlib.sh
|
|
37
|
-
shared.txt
|
|
38
31
|
shared_config.json
|
|
32
|
+
test_const_time_debug.zx
|
|
33
|
+
test_data.json
|
|
34
|
+
test_sqlite_python.py
|
|
39
35
|
ultimate_test.zx
|
|
40
36
|
zexus.json
|
|
41
|
-
|
|
37
|
+
zpics
|
|
38
|
+
zpm
|
|
42
39
|
zx
|
|
43
40
|
zx-deploy
|
|
44
41
|
zx-dev
|
|
@@ -52,118 +49,153 @@ zx.bin
|
|
|
52
49
|
.vscode/extensions/zexus-language/package.json
|
|
53
50
|
.vscode/extensions/zexus-language/snippets/zexus.json
|
|
54
51
|
.vscode/extensions/zexus-language/syntaxes/zexus.tmLanguage.json
|
|
55
|
-
.
|
|
56
|
-
.
|
|
57
|
-
.
|
|
58
|
-
.
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
52
|
+
.zpics_runtime/function_calls_after_let.json
|
|
53
|
+
.zpics_runtime/mixed_statement_boundaries.json
|
|
54
|
+
.zpics_runtime/nested_expressions.json
|
|
55
|
+
.zpics_runtime/persistence_after_assignment.json
|
|
56
|
+
.zpics_runtime/property_assignments.json
|
|
57
|
+
.zpics_runtime/type_annotations.json
|
|
58
|
+
.zpics_snapshots/function_calls_after_let.json
|
|
59
|
+
.zpics_snapshots/mixed_statement_boundaries.json
|
|
60
|
+
.zpics_snapshots/nested_expressions.json
|
|
61
|
+
.zpics_snapshots/persistence_after_assignment.json
|
|
62
|
+
.zpics_snapshots/property_assignments.json
|
|
63
|
+
.zpics_snapshots/type_annotations.json
|
|
64
|
+
archive/README.md
|
|
65
|
+
archive/dev-notes/DEV_SCRIPTS_README.md
|
|
66
|
+
archive/dev-notes/README.old.md
|
|
67
|
+
archive/dev-notes/VM_QUICK_REFERENCE.md
|
|
68
|
+
archive/dev-scripts/check_compiler_parser.py
|
|
69
|
+
archive/dev-scripts/check_lexer_module.py
|
|
70
|
+
archive/dev-scripts/check_parser_config.py
|
|
71
|
+
archive/dev-scripts/check_parser_differences.py
|
|
72
|
+
archive/dev-scripts/check_parser_setup.py
|
|
73
|
+
archive/dev-scripts/check_tokens.py
|
|
74
|
+
archive/dev-scripts/compare_lexers.py
|
|
75
|
+
archive/dev-scripts/compile_repro.py
|
|
76
|
+
archive/dev-scripts/debug_closure.py
|
|
77
|
+
archive/dev-scripts/debug_closure_detailed.py
|
|
78
|
+
archive/dev-scripts/debug_closure_full.py
|
|
79
|
+
archive/dev-scripts/debug_closure_instrumented.py
|
|
80
|
+
archive/dev-scripts/debug_function_params.py
|
|
81
|
+
archive/dev-scripts/debug_map_parsing.py
|
|
82
|
+
archive/dev-scripts/debug_module.py
|
|
83
|
+
archive/dev-scripts/debug_module_ast.py
|
|
84
|
+
archive/dev-scripts/debug_parser.py
|
|
85
|
+
archive/dev-scripts/debug_parser_function.py
|
|
86
|
+
archive/dev-scripts/debug_phase10_params.py
|
|
87
|
+
archive/dev-scripts/debug_tokens.py
|
|
88
|
+
archive/dev-scripts/final_validation.py
|
|
89
|
+
archive/dev-scripts/inspect_closure_bc.py
|
|
90
|
+
archive/dev-scripts/investigate_compiler.py
|
|
91
|
+
archive/dev-scripts/lexer_fixed.py
|
|
92
|
+
archive/dev-scripts/main.spec
|
|
93
|
+
archive/dev-scripts/parser_fixed.py
|
|
94
|
+
archive/dev-scripts/run_repro.py
|
|
95
|
+
archive/dev-scripts/temp_head.py
|
|
96
|
+
archive/dev-scripts/temp_import.py
|
|
97
|
+
archive/dev-scripts/tmp_all.zx
|
|
98
|
+
archive/dev-scripts/tmp_arrow_test.py
|
|
99
|
+
archive/dev-scripts/tmp_concat_func.zx
|
|
100
|
+
archive/dev-scripts/tmp_debug_print.zx
|
|
101
|
+
archive/dev-scripts/tmp_func.zx
|
|
102
|
+
archive/dev-scripts/tmp_map.zx
|
|
103
|
+
archive/dev-scripts/tmp_parse_test.py
|
|
104
|
+
archive/dev-scripts/tmp_run.py
|
|
105
|
+
archive/dev-scripts/token.py
|
|
106
|
+
archive/dev-scripts/verify_integration.py
|
|
107
|
+
archive/dev-scripts/zexus_ast.py
|
|
108
|
+
archive/dev-scripts/zexus_compiler.spec
|
|
109
|
+
archive/dev-scripts/zexus_token.py
|
|
110
|
+
archive/proofs/FRIEND_PROOF.md
|
|
111
|
+
archive/proofs/PROOF_FRIEND_WRONG.md
|
|
112
|
+
archive/reports/ALL_ISSUES_FIXED_FINAL_REPORT.md
|
|
113
|
+
archive/reports/VM_INTEGRATION_STATUS.md
|
|
114
|
+
archive/summaries/CONTINUE_IMPLEMENTATION_SUMMARY.md
|
|
115
|
+
archive/summaries/QUESTIONS_ANSWERED.md
|
|
116
|
+
archive/summaries/VSCODE_IMPLEMENTATION_SUMMARY.md
|
|
117
|
+
archive/temp-files/math_ops.cpp
|
|
118
|
+
archive/temp-files/zexus_compiler.py.backup
|
|
119
|
+
bin/zexus
|
|
120
|
+
bin/zpics
|
|
121
|
+
bin/zpm
|
|
122
|
+
bin/zx
|
|
123
|
+
bin/zx-deploy
|
|
124
|
+
bin/zx-dev
|
|
125
|
+
bin/zx-run
|
|
126
|
+
docs/ADVANCED_TESTING_COMPLETION_REPORT.md
|
|
130
127
|
docs/ARCHITECTURE.md
|
|
131
128
|
docs/ASYNC_IMPLEMENTATION_PLAN.md
|
|
132
129
|
docs/BLOCKCHAIN_FEATURES.md
|
|
133
130
|
docs/CONCURRENCY.md
|
|
131
|
+
docs/CONTRACT_ACCESS_CONTROL.md
|
|
132
|
+
docs/CRYPTO_FUNCTIONS.md
|
|
133
|
+
docs/DEBUG_SANITIZATION.md
|
|
134
134
|
docs/DOCUMENTATION_INDEX.md
|
|
135
|
+
docs/ECOSYSTEM_GUIDE.md
|
|
136
|
+
docs/ECOSYSTEM_ROADMAP_VISUAL.md
|
|
137
|
+
docs/ECOSYSTEM_STRATEGY.md
|
|
138
|
+
docs/EDGE_CASE_TESTING_REPORT.md
|
|
135
139
|
docs/ERROR_REPORTING.md
|
|
140
|
+
docs/FINAL_STABILITY_REPORT.md
|
|
136
141
|
docs/GITHUB_LINGUIST_SUBMISSION.md
|
|
137
142
|
docs/INDEX.md
|
|
143
|
+
docs/INTEGER_OVERFLOW_PROTECTION.md
|
|
138
144
|
docs/ISSUES.md
|
|
139
145
|
docs/MAIN_ENTRY_POINT.md
|
|
140
146
|
docs/MAIN_ENTRY_POINT_ENHANCEMENTS.md
|
|
147
|
+
docs/MANDATORY_SANITIZATION.md
|
|
141
148
|
docs/MODULE_SYSTEM.md
|
|
142
149
|
docs/ORGANIZATION.md
|
|
150
|
+
docs/PACKAGE_DEVELOPMENT.md
|
|
143
151
|
docs/PARSER_OPTIMIZATION_GUIDE.md
|
|
144
152
|
docs/PERFORMANCE_FEATURES.md
|
|
145
153
|
docs/PHILOSOPHY.md
|
|
146
154
|
docs/PLUGIN_QUICK_REFERENCE.md
|
|
147
155
|
docs/PLUGIN_SYSTEM.md
|
|
156
|
+
docs/QUICK_REFERENCE.md
|
|
148
157
|
docs/QUICK_START.md
|
|
149
158
|
docs/README.md
|
|
159
|
+
docs/RESOURCE_LIMITS.md
|
|
150
160
|
docs/SECURITY_FEATURES.md
|
|
151
161
|
docs/SECURITY_FEATURES_GUIDE.zx
|
|
162
|
+
docs/SECURITY_FIXES_SUMMARY.md
|
|
163
|
+
docs/STABILITY_AND_EDGE_CASE_SUMMARY.md
|
|
152
164
|
docs/STATUS.md
|
|
153
165
|
docs/TEST_ISSUES_REPORT.md
|
|
166
|
+
docs/TYPE_SAFETY.md
|
|
167
|
+
docs/WAITGROUP_BARRIER.md
|
|
154
168
|
docs/WATCH_FEATURE.md
|
|
155
169
|
docs/ZPM_GUIDE.md
|
|
156
170
|
docs/future_implentations.md
|
|
171
|
+
docs/archive/README.md
|
|
172
|
+
docs/archive/enhancement-package/00_START_HERE.md
|
|
173
|
+
docs/archive/enhancement-package/AUDIT_IMPLEMENTATION.md
|
|
174
|
+
docs/archive/enhancement-package/BUSINESS_IMPACT.md
|
|
175
|
+
docs/archive/enhancement-package/CODE_EXAMPLES.md
|
|
176
|
+
docs/archive/enhancement-package/CONVENIENCE_ADVANCED_FEATURES_IMPLEMENTATION.md
|
|
177
|
+
docs/archive/enhancement-package/DELIVERY_SUMMARY.md
|
|
178
|
+
docs/archive/enhancement-package/EXECUTIVE_SUMMARY.md
|
|
179
|
+
docs/archive/enhancement-package/FINAL_SUMMARY.md
|
|
180
|
+
docs/archive/enhancement-package/IMPLEMENTATION_GUIDE.md
|
|
181
|
+
docs/archive/enhancement-package/INDEX.md
|
|
182
|
+
docs/archive/enhancement-package/PERFORMANCE_FEATURES_IMPLEMENTATION.md
|
|
183
|
+
docs/archive/enhancement-package/RESTRICT_SANDBOX_TRAIL_IMPLEMENTATION.md
|
|
184
|
+
docs/archive/enhancement-package/ROADMAP.md
|
|
185
|
+
docs/archive/enhancement-package/STRATEGIC_FEATURES.md
|
|
186
|
+
docs/archive/enhancement-package/STRATEGIC_UPGRADES.md
|
|
157
187
|
docs/guides/PLUGIN_SYSTEM_GUIDE.md
|
|
158
188
|
docs/keywords/ACTION_FUNCTION_LAMBDA_RETURN.md
|
|
159
189
|
docs/keywords/ADVANCED_FEATURES.md
|
|
160
190
|
docs/keywords/ADVANCED_KEYWORDS.md
|
|
191
|
+
docs/keywords/AI_ML_KEYWORDS.md
|
|
161
192
|
docs/keywords/ASYNC_AWAIT.md
|
|
162
193
|
docs/keywords/ASYNC_CONCURRENCY.md
|
|
163
194
|
docs/keywords/ASYNC_SYSTEM_FIXED.md
|
|
164
195
|
docs/keywords/ASYNC_SYSTEM_STATUS_REPORT.md
|
|
165
196
|
docs/keywords/BLOCKCHAIN_KEYWORDS.md
|
|
166
197
|
docs/keywords/BLOCKCHAIN_STATE.md
|
|
198
|
+
docs/keywords/BREAK.md
|
|
167
199
|
docs/keywords/CAPABILITY_VALIDATION.md
|
|
168
200
|
docs/keywords/COMMAND_audit.md
|
|
169
201
|
docs/keywords/COMMAND_buffer.md
|
|
@@ -184,8 +216,11 @@ docs/keywords/COMMAND_watch.md
|
|
|
184
216
|
docs/keywords/CONST.md
|
|
185
217
|
docs/keywords/CONTINUE.md
|
|
186
218
|
docs/keywords/DATA.md
|
|
219
|
+
docs/keywords/DATABASE_KEYWORDS.md
|
|
187
220
|
docs/keywords/ERROR_HANDLING.md
|
|
188
221
|
docs/keywords/EVENTS_REACTIVE.md
|
|
222
|
+
docs/keywords/GUI_KEYWORDS.md
|
|
223
|
+
docs/keywords/HTTP_KEYWORDS.md
|
|
189
224
|
docs/keywords/IF_ELIF_ELSE.md
|
|
190
225
|
docs/keywords/KEYWORD_TESTING_INDEX.md
|
|
191
226
|
docs/keywords/KEYWORD_TESTING_MASTER_LIST.md
|
|
@@ -199,24 +234,38 @@ docs/keywords/PRINT_DEBUG.md
|
|
|
199
234
|
docs/keywords/RENDERER_UI.md
|
|
200
235
|
docs/keywords/SECURITY.md
|
|
201
236
|
docs/keywords/SPECIAL_KEYWORDS.md
|
|
237
|
+
docs/keywords/THIS.md
|
|
238
|
+
docs/keywords/THROW.md
|
|
202
239
|
docs/keywords/WHILE_FOR_EACH_IN.md
|
|
240
|
+
docs/keywords/ZPICS.md
|
|
203
241
|
docs/keywords/features/10-PHASE_COMPLETE.md
|
|
204
242
|
docs/keywords/features/ADVANCED_FEATURES_IMPLEMENTATION.md
|
|
205
243
|
docs/keywords/features/ADVANCED_PARSER_FIX_SUMMARY.md
|
|
244
|
+
docs/keywords/features/AI_ASSISTANT_GUIDE.md
|
|
245
|
+
docs/keywords/features/ANSWERS_TO_YOUR_QUESTIONS.md
|
|
206
246
|
docs/keywords/features/ASYNC_OPTIMIZER.md
|
|
247
|
+
docs/keywords/features/ASYNC_STATUS.md
|
|
207
248
|
docs/keywords/features/AUDIT_COMPLETION_SUMMARY.md
|
|
208
249
|
docs/keywords/features/AUDIT_SECURITY_INTEGRATION.md
|
|
250
|
+
docs/keywords/features/BACKEND_BLOCKCHAIN_GUIDE.md
|
|
209
251
|
docs/keywords/features/BLOCKCHAIN_IMPLEMENTATION.md
|
|
210
252
|
docs/keywords/features/BLOCKCHAIN_PARSER_EVALUATOR_INTEGRATION.md
|
|
253
|
+
docs/keywords/features/CAPABILITIES_TRACKER.md
|
|
254
|
+
docs/keywords/features/CHANGELOG.md
|
|
255
|
+
docs/keywords/features/CLI_FRAMEWORK.md
|
|
211
256
|
docs/keywords/features/COMPREHENSIVE_VERIFICATION_REPORT.md
|
|
257
|
+
docs/keywords/features/DATABASE_DRIVERS.md
|
|
212
258
|
docs/keywords/features/FIXES_SUMMARY.md
|
|
213
259
|
docs/keywords/features/FIX_ISSUES_5_6_SUMMARY.md
|
|
214
260
|
docs/keywords/features/FIX_SUMMARY.md
|
|
261
|
+
docs/keywords/features/HTTP_SERVER.md
|
|
215
262
|
docs/keywords/features/IF_STATEMENT_PARSER_FIX.md
|
|
216
263
|
docs/keywords/features/IF_THEN_ELSE_IMPLEMENTATION.md
|
|
264
|
+
docs/keywords/features/IMPLEMENTATION_COMPLETE.md
|
|
217
265
|
docs/keywords/features/IMPLEMENTATION_SUMMARY.md
|
|
218
266
|
docs/keywords/features/INTEGRATION_COMPLETE.md
|
|
219
267
|
docs/keywords/features/INTEGRATION_COMPLETE_SUMMARY.md
|
|
268
|
+
docs/keywords/features/ISSUE_RESOLUTION_SUMMARY.md
|
|
220
269
|
docs/keywords/features/KEYWORD_AFTER_DOT.md
|
|
221
270
|
docs/keywords/features/KEYWORD_AFTER_DOT_IMPLEMENTATION.md
|
|
222
271
|
docs/keywords/features/MAIN_ENTRY_POINT_IMPLEMENTATION.md
|
|
@@ -235,7 +284,12 @@ docs/keywords/features/PHASE_5_REGISTER_VM_COMPLETE.md
|
|
|
235
284
|
docs/keywords/features/PHASE_6_COMPLETION_REPORT.md
|
|
236
285
|
docs/keywords/features/PHASE_6_PARALLEL_VM_COMPLETE.md
|
|
237
286
|
docs/keywords/features/PHASE_7_MEMORY_MANAGEMENT_COMPLETE.md
|
|
287
|
+
docs/keywords/features/PRINT_STATEMENT_FIX.md
|
|
238
288
|
docs/keywords/features/PROFILER_USAGE_GUIDE.md
|
|
289
|
+
docs/keywords/features/PUBLISH_TO_PYPI.md
|
|
290
|
+
docs/keywords/features/REGRESSION_ISSUES_TRACKER.md
|
|
291
|
+
docs/keywords/features/REMAINING_ISSUES.md
|
|
292
|
+
docs/keywords/features/REPOSITORY_STRUCTURE.md
|
|
239
293
|
docs/keywords/features/REQUIRE_TOLERANCE_IMPLEMENTATION.md
|
|
240
294
|
docs/keywords/features/SEAL_IMPLEMENTATION_SUMMARY.md
|
|
241
295
|
docs/keywords/features/SECURITY_IMPLEMENTATION.md
|
|
@@ -243,6 +297,7 @@ docs/keywords/features/SECURITY_IMPLEMENTATION_SUMMARY.md
|
|
|
243
297
|
docs/keywords/features/SESSION_COMPLETION_SUMMARY.md
|
|
244
298
|
docs/keywords/features/SESSION_PARSER_FIX_SUMMARY.md
|
|
245
299
|
docs/keywords/features/SSA_AND_REGISTER_ALLOCATION.md
|
|
300
|
+
docs/keywords/features/TESTING_FRAMEWORK.md
|
|
246
301
|
docs/keywords/features/TEST_SUITE_DOCUMENTATION.md
|
|
247
302
|
docs/keywords/features/VERIFY_ENHANCEMENT_GUIDE.md
|
|
248
303
|
docs/keywords/features/VERIFY_IMPLEMENTATION_SUMMARY.md
|
|
@@ -253,15 +308,22 @@ docs/keywords/features/VM_INTEGRATION_COMPLETE.md
|
|
|
253
308
|
docs/keywords/features/VM_INTEGRATION_SUMMARY.md
|
|
254
309
|
docs/keywords/features/VM_OPTIMIZATION_PHASE_8_MASTER_LIST.md
|
|
255
310
|
docs/keywords/features/ZEXUS_IN_ACTION.md
|
|
311
|
+
docs/keywords/features/ZPM_TEST_REPORT.md
|
|
256
312
|
docs/keywords/features/evaluator_export_compiler_summary.md
|
|
257
313
|
docs/keywords/features/installation_paths_summary.md
|
|
258
314
|
docs/keywords/features/module_cache.md
|
|
259
315
|
docs/keywords/features/parser_fix_summary.md
|
|
260
316
|
docs/keywords/features/parsing_fixes_summary.md
|
|
261
|
-
|
|
317
|
+
docs/packages/README.md
|
|
318
|
+
docs/packages/ZEXUS_AI_PACKAGE.md
|
|
319
|
+
docs/packages/ZEXUS_DB_PACKAGE.md
|
|
320
|
+
docs/packages/ZEXUS_GUI_PACKAGE.md
|
|
321
|
+
docs/packages/ZEXUS_WEB_PACKAGE.md
|
|
262
322
|
docs/profiler/PROFILER_GUIDE.md
|
|
323
|
+
docs/stdlib/BLOCKCHAIN_MODULE.md
|
|
324
|
+
docs/stdlib/CRYPTO_MODULE.md
|
|
325
|
+
docs/stdlib/INTEGRATION.md
|
|
263
326
|
docs/stdlib/README.md
|
|
264
|
-
main
|
|
265
327
|
examples/MAIN_ENTRY_POINT_EXAMPLES.md
|
|
266
328
|
examples/action_literal_test.zx
|
|
267
329
|
examples/daemon_example.zx
|
|
@@ -280,6 +342,10 @@ examples/simple_action_test.zx
|
|
|
280
342
|
examples/simple_run_example.zx
|
|
281
343
|
examples/simple_test.zx
|
|
282
344
|
examples/test.zx
|
|
345
|
+
examples/test_mongo.zx
|
|
346
|
+
examples/test_mysql.zx
|
|
347
|
+
examples/test_postgres.zx
|
|
348
|
+
examples/test_sqlite.zx
|
|
283
349
|
examples/token_contract.zx
|
|
284
350
|
examples/ziver_chain_test.zx
|
|
285
351
|
linguist-submission/SUBMISSION_INSTRUCTIONS.md
|
|
@@ -300,59 +366,14 @@ renderer/painter.py
|
|
|
300
366
|
samples/basic.zx
|
|
301
367
|
samples/blockchain.zx
|
|
302
368
|
samples/security.zx
|
|
369
|
+
scripts/README.md
|
|
303
370
|
scripts/__init__.py.bak
|
|
304
371
|
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
372
|
scripts/fixed_parser.py
|
|
327
|
-
scripts/inspect_closure_bc.py
|
|
328
373
|
scripts/integration_demo.py
|
|
329
|
-
scripts/investigate_compiler.py
|
|
330
|
-
scripts/lexer_fixed.py
|
|
331
374
|
scripts/main.py
|
|
332
|
-
scripts/
|
|
333
|
-
scripts/parser_fixed.py
|
|
334
|
-
scripts/run_repro.py
|
|
375
|
+
scripts/postinstall.js
|
|
335
376
|
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
377
|
scripts/zpm.py
|
|
357
378
|
scripts/zx-luncher.py
|
|
358
379
|
src/README.md
|
|
@@ -385,6 +406,7 @@ src/zexus/complexity_system.py
|
|
|
385
406
|
src/zexus/concurrency_system.py
|
|
386
407
|
src/zexus/config.py
|
|
387
408
|
src/zexus/crypto_bridge.py
|
|
409
|
+
src/zexus/debug_sanitizer.py
|
|
388
410
|
src/zexus/dependency_injection.py
|
|
389
411
|
src/zexus/ecosystem.py
|
|
390
412
|
src/zexus/environment.py
|
|
@@ -394,6 +416,7 @@ src/zexus/evaluator_original.py
|
|
|
394
416
|
src/zexus/external_bridge.py
|
|
395
417
|
src/zexus/find_affected_imports.sh
|
|
396
418
|
src/zexus/hybrid_orchestrator.py
|
|
419
|
+
src/zexus/input_validation.py
|
|
397
420
|
src/zexus/lexer.py
|
|
398
421
|
src/zexus/logging.py
|
|
399
422
|
src/zexus/metaprogramming.py
|
|
@@ -407,6 +430,7 @@ src/zexus/policy_engine.py
|
|
|
407
430
|
src/zexus/purity_system.py
|
|
408
431
|
src/zexus/search_old_imports.sh
|
|
409
432
|
src/zexus/security.py
|
|
433
|
+
src/zexus/security_enforcement.py
|
|
410
434
|
src/zexus/stack_trace.py
|
|
411
435
|
src/zexus/stdlib_integration.py
|
|
412
436
|
src/zexus/strategy_recovery.py
|
|
@@ -423,6 +447,8 @@ src/zexus.egg-info/entry_points.txt
|
|
|
423
447
|
src/zexus.egg-info/not-zip-safe
|
|
424
448
|
src/zexus.egg-info/requires.txt
|
|
425
449
|
src/zexus.egg-info/top_level.txt
|
|
450
|
+
src/zexus/access_control_system/__init__.py
|
|
451
|
+
src/zexus/access_control_system/access_control.py
|
|
426
452
|
src/zexus/blockchain/__init__.py
|
|
427
453
|
src/zexus/blockchain/crypto.py
|
|
428
454
|
src/zexus/blockchain/ledger.py
|
|
@@ -443,34 +469,46 @@ src/zexus/evaluator/core.py
|
|
|
443
469
|
src/zexus/evaluator/expressions.py
|
|
444
470
|
src/zexus/evaluator/functions.py
|
|
445
471
|
src/zexus/evaluator/integration.py
|
|
472
|
+
src/zexus/evaluator/resource_limiter.py
|
|
446
473
|
src/zexus/evaluator/statements.py
|
|
447
474
|
src/zexus/evaluator/utils.py
|
|
448
|
-
copilot/fix-issues-and-documentation
|
|
449
475
|
src/zexus/lsp/__init__.py
|
|
450
476
|
src/zexus/lsp/completion_provider.py
|
|
451
477
|
src/zexus/lsp/definition_provider.py
|
|
452
478
|
src/zexus/lsp/hover_provider.py
|
|
453
479
|
src/zexus/lsp/server.py
|
|
454
480
|
src/zexus/lsp/symbol_provider.py
|
|
455
|
-
main
|
|
456
481
|
src/zexus/parser/__init__.py
|
|
457
482
|
src/zexus/parser/integration.py
|
|
458
483
|
src/zexus/parser/parser.py
|
|
459
484
|
src/zexus/parser/strategy_context.py
|
|
460
485
|
src/zexus/parser/strategy_structural.py
|
|
461
|
-
copilot/fix-issues-and-documentation
|
|
462
486
|
src/zexus/profiler/__init__.py
|
|
463
487
|
src/zexus/profiler/profiler.py
|
|
464
|
-
main
|
|
465
488
|
src/zexus/runtime/__init__.py
|
|
466
489
|
src/zexus/runtime/async_runtime.py
|
|
467
490
|
src/zexus/stdlib/__init__.py
|
|
468
491
|
src/zexus/stdlib/blockchain.py
|
|
492
|
+
src/zexus/stdlib/compression.py
|
|
469
493
|
src/zexus/stdlib/crypto.py
|
|
470
494
|
src/zexus/stdlib/datetime.py
|
|
495
|
+
src/zexus/stdlib/db_mongo.py
|
|
496
|
+
src/zexus/stdlib/db_mysql.py
|
|
497
|
+
src/zexus/stdlib/db_postgres.py
|
|
498
|
+
src/zexus/stdlib/db_sqlite.py
|
|
499
|
+
src/zexus/stdlib/encoding.py
|
|
471
500
|
src/zexus/stdlib/fs.py
|
|
472
501
|
src/zexus/stdlib/http.py
|
|
502
|
+
src/zexus/stdlib/http_server.py
|
|
473
503
|
src/zexus/stdlib/json_module.py
|
|
504
|
+
src/zexus/stdlib/math.py
|
|
505
|
+
src/zexus/stdlib/os_module.py
|
|
506
|
+
src/zexus/stdlib/regex.py
|
|
507
|
+
src/zexus/stdlib/sockets.py
|
|
508
|
+
src/zexus/stdlib/test_framework.zx
|
|
509
|
+
src/zexus/stdlib/test_runner.zx
|
|
510
|
+
src/zexus/testing/zpics.py
|
|
511
|
+
src/zexus/testing/zpics_runtime.py
|
|
474
512
|
src/zexus/vm/__init__.py
|
|
475
513
|
src/zexus/vm/async_optimizer.py
|
|
476
514
|
src/zexus/vm/bytecode.py
|
|
@@ -498,6 +536,7 @@ tests/comprehensive_test.zx
|
|
|
498
536
|
tests/conftest.py
|
|
499
537
|
tests/debug_print_parse.py
|
|
500
538
|
tests/debug_tokens.py
|
|
539
|
+
tests/example.test.zx
|
|
501
540
|
tests/final_integration_test.zx
|
|
502
541
|
tests/test_async_system_integration.py
|
|
503
542
|
tests/test_full_integration.py
|
|
@@ -505,8 +544,23 @@ tests/test_global.zx
|
|
|
505
544
|
tests/test_integration.py
|
|
506
545
|
tests/test_module_system.py
|
|
507
546
|
tests/test_simple_if.zx
|
|
547
|
+
tests/vulnerability_tests.zx
|
|
548
|
+
tests/advanced_edge_cases/README.md
|
|
549
|
+
tests/advanced_edge_cases/test_bytecode_validation.py
|
|
550
|
+
tests/advanced_edge_cases/test_circular_imports.py
|
|
551
|
+
tests/advanced_edge_cases/test_file_io_errors.py
|
|
552
|
+
tests/advanced_edge_cases/test_input_validation.py
|
|
553
|
+
tests/advanced_edge_cases/test_memory_limits.py
|
|
554
|
+
tests/advanced_edge_cases/test_network_capabilities.py
|
|
555
|
+
tests/advanced_edge_cases/test_recursion_limits.py
|
|
556
|
+
tests/advanced_edge_cases/test_resource_cleanup.py
|
|
557
|
+
tests/advanced_edge_cases/test_resource_cleanup_simple.py
|
|
508
558
|
tests/builtin_modules/README.md
|
|
509
559
|
tests/builtin_modules/test_crypto_basic.zx
|
|
560
|
+
tests/edge_cases/README.md
|
|
561
|
+
tests/edge_cases/test_arithmetic_edge_cases.py
|
|
562
|
+
tests/edge_cases/test_comprehensive_edge_cases.py
|
|
563
|
+
tests/edge_cases/test_null_reassignment.py
|
|
510
564
|
tests/examples/clean_test.zx
|
|
511
565
|
tests/examples/debug.zx
|
|
512
566
|
tests/examples/debug_test.zx
|
|
@@ -536,6 +590,13 @@ tests/fixtures/use_only.zx
|
|
|
536
590
|
tests/fixtures/modules/a.zx
|
|
537
591
|
tests/fixtures/modules/b.zx
|
|
538
592
|
tests/fixtures/modules/mathmod.zx
|
|
593
|
+
tests/golden/README.md
|
|
594
|
+
tests/golden/function_calls_after_let.zx
|
|
595
|
+
tests/golden/mixed_statement_boundaries.zx
|
|
596
|
+
tests/golden/nested_expressions.zx
|
|
597
|
+
tests/golden/persistence_after_assignment.zx
|
|
598
|
+
tests/golden/property_assignments.zx
|
|
599
|
+
tests/golden/type_annotations.zx
|
|
539
600
|
tests/integration/test_advanced_features_complete.zx
|
|
540
601
|
tests/integration/test_audit_command.zx
|
|
541
602
|
tests/integration/test_blockchain_integration.zx
|
|
@@ -695,6 +756,7 @@ tests/keyword_tests/easy/test_blockchain_easy.zx
|
|
|
695
756
|
tests/keyword_tests/easy/test_capability_easy.zx
|
|
696
757
|
tests/keyword_tests/easy/test_const_easy.zx
|
|
697
758
|
tests/keyword_tests/easy/test_continue_easy.zx
|
|
759
|
+
tests/keyword_tests/easy/test_data_easy.zx
|
|
698
760
|
tests/keyword_tests/easy/test_error_handling_easy.zx
|
|
699
761
|
tests/keyword_tests/easy/test_events_easy.zx
|
|
700
762
|
tests/keyword_tests/easy/test_functions_easy.zx
|
|
@@ -719,6 +781,7 @@ tests/keyword_tests/medium/test_blockchain_medium.zx
|
|
|
719
781
|
tests/keyword_tests/medium/test_capability_medium.zx
|
|
720
782
|
tests/keyword_tests/medium/test_const_medium.zx
|
|
721
783
|
tests/keyword_tests/medium/test_continue_medium.zx
|
|
784
|
+
tests/keyword_tests/medium/test_data_edge_cases.zx
|
|
722
785
|
tests/keyword_tests/medium/test_error_handling_medium.zx
|
|
723
786
|
tests/keyword_tests/medium/test_events_medium.zx
|
|
724
787
|
tests/keyword_tests/medium/test_functions_medium.zx
|
|
@@ -739,6 +802,33 @@ tests/repro/repro_enum.zx
|
|
|
739
802
|
tests/repro/repro_lambda.zx
|
|
740
803
|
tests/repro/repro_map.zx
|
|
741
804
|
tests/repro/repro_protocol.zx
|
|
805
|
+
tests/security/test_access_control.zx
|
|
806
|
+
tests/security/test_call_depth.zx
|
|
807
|
+
tests/security/test_context_mismatch.zx
|
|
808
|
+
tests/security/test_contract_access.zx
|
|
809
|
+
tests/security/test_contract_require_fix.zx
|
|
810
|
+
tests/security/test_crypto_functions.zx
|
|
811
|
+
tests/security/test_debug_sanitization.zx
|
|
812
|
+
tests/security/test_file_input_blocking.zx
|
|
813
|
+
tests/security/test_file_input_safe.zx
|
|
814
|
+
tests/security/test_fix4_complete.zx
|
|
815
|
+
tests/security/test_integer_overflow.zx
|
|
816
|
+
tests/security/test_literal_concat.zx
|
|
817
|
+
tests/security/test_path_traversal_fix.zx
|
|
818
|
+
tests/security/test_persistent_storage_limits.zx
|
|
819
|
+
tests/security/test_print_concat.zx
|
|
820
|
+
tests/security/test_resource_limits.zx
|
|
821
|
+
tests/security/test_sanitization_enforcement.zx
|
|
822
|
+
tests/security/test_sanitization_improvements.zx
|
|
823
|
+
tests/security/test_sanitize_debug.zx
|
|
824
|
+
tests/security/test_sanitize_debug2.zx
|
|
825
|
+
tests/security/test_sanitize_simple.zx
|
|
826
|
+
tests/security/test_security_blocking.zx
|
|
827
|
+
tests/security/test_security_enforcement.zx
|
|
828
|
+
tests/security/test_string_debug.zx
|
|
829
|
+
tests/security/test_taint_tracking.zx
|
|
830
|
+
tests/security/test_type_safety.zx
|
|
831
|
+
tests/security/test_var_debug.zx
|
|
742
832
|
tests/unit/simple_test.py
|
|
743
833
|
tests/unit/test_advanced_types.py
|
|
744
834
|
tests/unit/test_advanced_vs_traditional.py
|