zexus 1.8.2 → 1.8.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.
Files changed (37) hide show
  1. package/README.md +89 -64
  2. package/package.json +1 -1
  3. package/rust_core/Cargo.lock +1 -1
  4. package/src/zexus/__init__.py +1 -1
  5. package/src/zexus/builtin_modules.py +50 -13
  6. package/src/zexus/cli/main.py +46 -1
  7. package/src/zexus/cli/zpm.py +1 -1
  8. package/src/zexus/evaluator/bytecode_compiler.py +11 -2
  9. package/src/zexus/evaluator/core.py +4 -1
  10. package/src/zexus/evaluator/expressions.py +11 -2
  11. package/src/zexus/evaluator/functions.py +72 -0
  12. package/src/zexus/evaluator/resource_limiter.py +1 -1
  13. package/src/zexus/evaluator/statements.py +44 -4
  14. package/src/zexus/kernel/__init__.py +34 -0
  15. package/src/zexus/kernel/hooks.py +276 -0
  16. package/src/zexus/kernel/registry.py +203 -0
  17. package/src/zexus/kernel/zir/__init__.py +145 -0
  18. package/src/zexus/lexer.py +7 -0
  19. package/src/zexus/object.py +28 -5
  20. package/src/zexus/parser/parser.py +53 -11
  21. package/src/zexus/parser/strategy_context.py +179 -10
  22. package/src/zexus/security.py +26 -2
  23. package/src/zexus/stdlib/blockchain.py +84 -0
  24. package/src/zexus/stdlib/http_server.py +2 -2
  25. package/src/zexus/stdlib/math.py +25 -17
  26. package/src/zexus/stdlib_integration.py +119 -2
  27. package/src/zexus/type_checker.py +17 -12
  28. package/src/zexus/vm/compiler.py +57 -6
  29. package/src/zexus/vm/fastops.c +4704 -1263
  30. package/src/zexus/vm/fastops.cpython-312-x86_64-linux-gnu.so +0 -0
  31. package/src/zexus/vm/fastops.pyx +81 -3
  32. package/src/zexus/vm/optimizer.py +65 -27
  33. package/src/zexus/vm/vm.py +871 -98
  34. package/src/zexus/zexus_ast.py +4 -1
  35. package/src/zexus/zpm/package_manager.py +1 -1
  36. package/src/zexus.egg-info/PKG-INFO +90 -65
  37. package/src/zexus.egg-info/SOURCES.txt +51 -0
@@ -196,10 +196,13 @@ class PrintStatement(Statement):
196
196
  return f"PrintStatement(values={self.values})"
197
197
 
198
198
  class ForEachStatement(Statement):
199
- def __init__(self, item, iterable, body):
199
+ def __init__(self, item, iterable, body, index=None):
200
200
  self.item = item; self.iterable = iterable; self.body = body
201
+ self.index = index # R-006/R-007: optional index/key variable for indexed iteration
201
202
 
202
203
  def __repr__(self):
204
+ if self.index:
205
+ return f"ForEachStatement(index={self.index}, item={self.item}, iterable={self.iterable})"
203
206
  return f"ForEachStatement(item={self.item}, iterable={self.iterable})"
204
207
 
205
208
  class EmbeddedCodeStatement(Statement):
@@ -23,7 +23,7 @@ class PackageManager:
23
23
  self.installer = PackageInstaller(self.zpm_dir)
24
24
  self.publisher = PackagePublisher(self.registry)
25
25
 
26
- def init(self, name: str = None, version: str = "1.8.2") -> Dict:
26
+ def init(self, name: str = None, version: str = "1.8.3") -> Dict:
27
27
  """Initialize a new Zexus project with package.json"""
28
28
  if self.config_file.exists():
29
29
  print(f"⚠️ {self.config_file} already exists")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: zexus
3
- Version: 1.8.2
3
+ Version: 1.8.3
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
@@ -69,14 +69,14 @@ Dynamic: requires-python
69
69
 
70
70
  <div align="center">
71
71
 
72
- ![Zexus Logo](https://img.shields.io/badge/Zexus-v1.8.1-FF6B35?style=for-the-badge)
72
+ ![Zexus Logo](https://img.shields.io/badge/Zexus-v1.8.3-FF6B35?style=for-the-badge)
73
73
  [![License](https://img.shields.io/badge/License-MIT-blue.svg?style=for-the-badge)](LICENSE)
74
74
  [![Python](https://img.shields.io/badge/Python-3.8+-3776AB?style=for-the-badge&logo=python)](https://python.org)
75
75
  [![GitHub](https://img.shields.io/badge/GitHub-Zaidux/zexus--interpreter-181717?style=for-the-badge&logo=github)](https://github.com/Zaidux/zexus-interpreter)
76
76
 
77
77
  **A modern, security-first programming language with built-in blockchain support, VM-accelerated execution, advanced memory management, and policy-as-code**
78
78
 
79
- [What's New](#-whats-new-in-v171) • [Features](#-key-features) • [Installation](#-installation) • [Quick Start](#-quick-start) • [Keywords](#-complete-keyword-reference) • [Documentation](#-documentation) • [Examples](#-examples) • [Troubleshooting](#-getting-help--troubleshooting)
79
+ [What's New](#-whats-new-in-v183) • [Features](#-key-features) • [Installation](#-installation) • [Quick Start](#-quick-start) • [Keywords](#-complete-keyword-reference) • [Documentation](#-documentation) • [Examples](#-examples) • [Troubleshooting](#-getting-help--troubleshooting)
80
80
 
81
81
  </div>
82
82
 
@@ -85,7 +85,7 @@ Dynamic: requires-python
85
85
  ## 📋 Table of Contents
86
86
 
87
87
  - [What is Zexus?](#-what-is-zexus)
88
- - [What's New](#-whats-new-in-v171)
88
+ - [What's New](#-whats-new-in-v183)
89
89
  - [Key Features](#-key-features)
90
90
  - [VM-Accelerated Performance](#-vm-accelerated-performance-new)
91
91
  - [Security & Policy-as-Code](#-security--policy-as-code--verify-enhanced)
@@ -134,71 +134,96 @@ Zexus is a next-generation, general-purpose programming language designed for se
134
134
 
135
135
  ---
136
136
 
137
- ## 🎉 What's New in v1.8.1
138
-
139
- ### Latest Features (v1.8.1)
140
-
141
- **FIND Keyword** - Declarative project search that resolves exact module paths with scope filtering and smart suggestions
142
- ✅ **LOAD Keyword & Manager** - Provider-aware configuration loader with built-in ENV, JSON, and YAML support plus caching
143
- **VM + Bytecode Support** - FIND/LOAD now compile to bytecode with helper bridges so scripts run identically in the VM and interpreter
144
- **Targeted Test Coverage** - Added regression tests that exercise both interpreter and VM paths for FIND/LOAD workflows
145
-
146
- ### Previous Features (v1.6.3)
147
-
148
- **Complete Database Ecosystem** - Production-ready database drivers
149
- **4 Database Drivers** - SQLite, PostgreSQL, MySQL, MongoDB fully tested
150
- **HTTP Server** - Build web servers with routing (GET, POST, PUT, DELETE)
151
- ✅ **Socket/TCP Primitives** - Low-level network programming
152
- **Testing Framework** - Write and run tests with assertions
153
- **ZPM Package Manager** - Fully functional package management system
154
- **Comprehensive Documentation** - 900+ lines of ecosystem guides
155
-
156
- ### Previous Features (v1.5.0)
157
-
158
- ✅ **World-Class Error Reporting** - Production-grade error messages rivaling Rust
159
- **Advanced DATA System** - Generic types, pattern matching, operator overloading
160
- **Stack Trace Formatter** - Beautiful, readable stack traces with source context
161
- **Smart Error Suggestions** - Actionable hints for fixing common errors
162
- **Pattern Matching** - Complete pattern matching with exhaustiveness checking
163
- **CONTINUE Keyword** - Error recovery mode for graceful degradation and batch processing
164
-
165
- ### Recent Enhancements (v0.1.3)
166
-
167
- **130+ Keywords Fully Operational** - All core language features tested and verified
168
- ✅ **Dual-Mode DEBUG** - Function mode (`debug(x)`) and statement mode (`debug x;`)
169
- **Conditional Print** - `print(condition, message)` for dynamic output control
170
- ✅ **Multiple Syntax Styles** - `let x = 5`, `let x : 5`, `let x : int = 5` all supported
171
- **Enterprise Keywords** - MIDDLEWARE, AUTH, THROTTLE, CACHE, INJECT fully functional
172
- **Async/Await Runtime** - Complete Promise-based async system with context propagation
173
- **Main Entry Point** - 15+ builtins for program lifecycle management
174
- ✅ **UI Renderer** - SCREEN, COMPONENT, THEME keywords with 120+ tests
175
- **Enhanced VERIFY** - Email, URL, phone validation, pattern matching, database checks
176
- **Blockchain Keywords** - implements, pure, view, payable, modifier, this, emit
177
- ✅ **Loop Control** - BREAK keyword for early loop exit
178
- **Error Handling** - THROW keyword for explicit error raising, THIS for instance reference
179
- ✅ **100+ Built-in Functions** - Comprehensive standard library
180
- **LOG Keyword Enhancements** - `read_file()` and `eval_file()` for dynamic code generation
181
- **REQUIRE Tolerance Blocks** - Conditional bypasses for VIP/admin/emergency scenarios
182
- ✅ **Function-Level Scoping** - LET/CONST documented with scope behavior and shadowing rules
183
- ✅ **Advanced Error Patterns** - Retry, circuit breaker, error aggregation patterns
184
-
185
- ### Bug Fixes & Improvements
186
-
187
- Fixed array literal parsing (no more duplicate elements)
188
- Fixed ENUM value accessibility
189
- ✅ Fixed WHILE condition parsing without parentheses
190
- Fixed loop execution and variable reassignment
191
- ✅ Fixed DEFER cleanup execution
192
- Fixed SANDBOX return values
193
- ✅ Fixed dependency injection container creation
194
- Added tolerance blocks for REQUIRE
195
- ✅ Improved error messages and debugging output
137
+ ## 🎉 What's New in v1.8.3
138
+
139
+ ### v1.8.3 — Phase 0 Audit Fixes, Closure Scoping Overhaul & VM Hardening (2026-03-01)
140
+
141
+ 19 issues from the [Ziver-Chain Phase 0 rewrite audit](issues/ISSUE8.md) resolved including 3 VM-specific critical fixes. Key changes:
142
+
143
+ **VM Fixes & Hardening:**
144
+ - **R-001:** Entity field access on VM now works proper `EntityDefinition`/`EntityInstance` construction from bytecode
145
+ - **R-002:** Contract `state` declarations now compile correctly (`_compile_StateStatement`)
146
+ - **R-010:** Complex programs no longer silently fail — added `_vm_warn()` diagnostics, replaced 15 silent error handlers
147
+ - Native fast-path (`_vm_native_call`) for `push`/`append`/`length`/`str`/`range` operations on VM-native types
148
+ - `VMRuntimeError(Exception)` replaces non-raisable `ZEvaluationError(Object)` in 15 raise sites
149
+ - Stack overflow protection, execution timeout (30s), opcode limit (100M), configurable VM pool sizing
150
+ - **Rust VM status indicator** CLI/runner show "Rust VM: active", "available but disabled", or "not compiled"
151
+
152
+ **Closure & Scoping Fixes:**
153
+ - Entity/`let` declarations before a contract no longer break contract visibility — declaration order is now flexible
154
+ - Module-level helper functions called from contract methods now correctly propagate side-effects (`list.push()`, `map[k]=v`)
155
+ - `action protect` now works at module level (policy enforcement added to function call path)
156
+ - Storage sync-back in contract methods improved — `list.push()` after `map[key]=val` no longer silently ignored
157
+ - Exported entities can now be used as constructors in importing files
158
+
159
+ **Contract & Language Fixes:**
160
+ - `self` keyword works as alias for `this` inside contracts
161
+ - `init()` auto-called on `Contract()` construction
162
+ - `state { field1: val, field2: val }` multi-field blocks work correctly
163
+ - `for each i, item in list` (indexed) and `for each key, val in map` now supported
164
+ - `INTEGER * FLOAT` implicit coercion and `%` modulo on floats now work
165
+ - Added `range()`, `typeof()`, `abs()`, `str()`, `length()` builtins; 8 parser edge-case fixes
166
+
167
+ **Stats:** 1852 tests pass, 0 regressions. 5 new extreme test suites (83 tests across speed, stability, security, features, VM). See [CHANGELOG](CHANGELOG.md) for full details.
168
+
169
+ ### v1.8.2 Concurrency & Channel Support (2026-02-25)
170
+
171
+ - `watch =>` arrow-lambda fallback no longer hijacks the strategy parser
172
+ - Channel support in VM compiler (`_compile_ChannelStatement`, `_compile_SendStatement`, `_compile_ReceiveStatement`)
173
+ - SPAWN/AWAIT opcodes in sync path using `threading.Thread(daemon=True)`
174
+ - Strategy parser channel/async handlers added
175
+ - Fixed 10+ missing VM node types; zero VM fallbacks achieved
176
+ - All versions bumped to 1.8.2; Rust VM builds with `maturin develop --release`
177
+
178
+ ### v1.8.1 ISSUE7 Audit & Security Remediation (2026-02-23)
179
+
180
+ All 21 issues from the Phase 0 audit resolved:
181
+ - `emit`, `protocol`, `implements` keywords fully operational in all parsers
182
+ - Entity compilation crash in VM fixed; imported functions no longer return raw Action objects
183
+ - `map.has()` / `map.get()` key normalization fixed
184
+ - ExportStatement supported in VM; entity constructor arity validation relaxed
185
+ - `persistent storage` now wires to SQLite backend with `set_persistent`/`get_persistent`
186
+ - 5 new builtins: `track_memory()`, `cache()`, `throttle()`, `audit()`, `verify()`
187
+ - Complete security remediation Phases 0–5 (sandboxing, ReDoS, import sandboxing, compiler parity, dead-code removal, bounded logs)
188
+ - 1852 tests pass
189
+
190
+ ### v1.8.0 Rust VM Pipeline & Major Features (2026-02-23)
191
+
192
+ **Language Features:** Compound assignment (`+=`, `-=`, etc.), string interpolation (`"Hello ${name}"`), block comments (`/* */`), multiline strings, single-quoted strings, exponentiation (`**`), `finally` clause, destructuring assignment.
193
+
194
+ **Developer Tooling:** Circular import detection, LSP go-to-definition, remote ZPM registry, static type checker.
195
+
196
+ **Major Capabilities:** Debug Adapter Protocol (DAP) server, GUI backend (Tk + Web), true concurrent EventLoop, WASM compilation target.
197
+
198
+ **Rust-First Execution (Phases 0–6):** Complete migration achieving **102,000+ TPS** with zero Python fallbacks. Includes binary `.zxc` format, Rust bytecode interpreter (22 MIPS, 20.7x speedup), adaptive VM routing, `RustContractVM` orchestration, GIL-free batch execution (221,593 TPS peak), and 40+ Rust builtins.
199
+
200
+ ### v1.7.x — FIND/LOAD Keywords & Performance (2026-01)
201
+
202
+ - **v1.7.2:** Major interpreter speed improvements, smart storage for lists, optimized stack traces, blockchain perf fix
203
+ - **v1.7.1:** FIND keyword (declarative module search), LOAD keyword (provider-aware config loader), VM bytecode support for both, regression tests
204
+
205
+ ### v1.6.x — Database Ecosystem & Security (2025-12 – 2026-01)
206
+
207
+ - **v1.6.8:** Parser fix for indexed assignments on new lines; contract DATA member declarations
208
+ - **v1.6.7:** Semicolon handling fix, context-aware keyword recognition, standalone block statements
209
+ - **v1.6.6:** Repeated contract action calls, multiple indexed assignments
210
+ - **v1.6.5:** Entity property access, keyword restrictions (`from`/`to` as params), multiple map assignments
211
+ - **v1.6.3:** Comprehensive security remediation (10 OWASP categories), RBAC, bcrypt, input sanitization, resource limits, path traversal prevention
212
+ - **v1.6.2:** 4 database drivers (SQLite, PostgreSQL, MySQL, MongoDB), HTTP server, socket/TCP, testing framework, ZPM
213
+
214
+ ### v1.5.0 — Error Reporting & Type System (2025-12)
215
+
216
+ World-class error messages (rivaling Rust), generic types, pattern matching, operator overloading, stack trace formatter, smart suggestions, CONTINUE keyword.
217
+
218
+ ### v0.1.3 — Foundation (2025-11)
219
+
220
+ 130+ keywords, dual-mode DEBUG, conditional print, multiple syntax styles, enterprise keywords, async/await, UI renderer, enhanced VERIFY, blockchain keywords, 100+ builtins.
196
221
 
197
222
  ---
198
223
 
199
- ## 🔒 Latest Security Patches & Features (v1.6.3)
224
+ ## 🔒 Security Features
200
225
 
201
- Zexus v1.6.3 introduces **comprehensive security enhancements** and developer-friendly safety features. These improvements make Zexus one of the most secure interpreted languages available, with enterprise-grade protection built into the language itself.
226
+ Zexus includes **comprehensive security enhancements** and developer-friendly safety features, making it one of the most secure interpreted languages available with enterprise-grade protection built into the language itself.
202
227
 
203
228
  ### 🛡️ Security Features Added
204
229
 
@@ -8,6 +8,7 @@ COMPLETE_FIXES_DOCUMENTATION.md
8
8
  CURRENT_ZEXUS.md
9
9
  DEMO_ALL_FIXES.zx
10
10
  FIX_SUMMARY.md
11
+ IMPROVEMENT_PLAN.md
11
12
  LICENSE
12
13
  NEXT_STEPS.md
13
14
  PARSER_SEMICOLON_FIX.md
@@ -484,6 +485,7 @@ issues/ISSUE4.md
484
485
  issues/ISSUE5.md
485
486
  issues/ISSUE6.md
486
487
  issues/ISSUE7.md
488
+ issues/ISSUE8.md
487
489
  issues/ISSUSE1.md
488
490
  issues/tests/test_issue5.zx
489
491
  linguist-submission/SUBMISSION_INSTRUCTIONS.md
@@ -645,6 +647,10 @@ src/zexus/evaluator/resource_limiter.py
645
647
  src/zexus/evaluator/statements.py
646
648
  src/zexus/evaluator/unified_execution.py
647
649
  src/zexus/evaluator/utils.py
650
+ src/zexus/kernel/__init__.py
651
+ src/zexus/kernel/hooks.py
652
+ src/zexus/kernel/registry.py
653
+ src/zexus/kernel/zir/__init__.py
648
654
  src/zexus/lsp/__init__.py
649
655
  src/zexus/lsp/completion_provider.py
650
656
  src/zexus/lsp/definition_provider.py
@@ -751,11 +757,18 @@ tests/conftest.py
751
757
  tests/debug_print_parse.py
752
758
  tests/debug_tokens.py
753
759
  tests/example.test.zx
760
+ tests/extreme_features_test.zx
761
+ tests/extreme_security_test.zx
762
+ tests/extreme_speed_test.zx
763
+ tests/extreme_stability_test.zx
764
+ tests/extreme_vm_test.zx
754
765
  tests/final_integration_test.zx
755
766
  tests/test_async_system_integration.py
756
767
  tests/test_full_integration.py
757
768
  tests/test_global.zx
758
769
  tests/test_integration.py
770
+ tests/test_issue8_advanced.zx
771
+ tests/test_issue8_fixes.zx
759
772
  tests/test_memory_safety.py
760
773
  tests/test_module_system.py
761
774
  tests/test_simple_if.zx
@@ -951,6 +964,7 @@ tests/integration/keywords/test_let_function_call.zx
951
964
  tests/integration/keywords/test_let_in_if.zx
952
965
  tests/integration/keywords/test_loops.zx
953
966
  tests/integration/keywords/test_while_simple.zx
967
+ tests/kernel/test_kernel.py
954
968
  tests/keyword_tests/README.md
955
969
  tests/keyword_tests/run_keyword_test.sh
956
970
  tests/keyword_tests/test_module_helper.zx
@@ -1056,6 +1070,13 @@ tests/security/test_string_debug.zx
1056
1070
  tests/security/test_taint_tracking.zx
1057
1071
  tests/security/test_type_safety.zx
1058
1072
  tests/security/test_var_debug.zx
1073
+ tests/stdlib/__init__.py
1074
+ tests/stdlib/test_crypto_module.py
1075
+ tests/stdlib/test_datetime_module.py
1076
+ tests/stdlib/test_encoding_module.py
1077
+ tests/stdlib/test_fs_module.py
1078
+ tests/stdlib/test_json_module.py
1079
+ tests/stdlib/test_math_module.py
1059
1080
  tests/unit/simple_test.py
1060
1081
  tests/unit/test_advanced_types.py
1061
1082
  tests/unit/test_advanced_vs_traditional.py
@@ -1064,13 +1085,16 @@ tests/unit/test_audit_enhanced.py
1064
1085
  tests/unit/test_basic.py
1065
1086
  tests/unit/test_capability_system.py
1066
1087
  tests/unit/test_concurrent_execution.py
1088
+ tests/unit/test_config.py
1067
1089
  tests/unit/test_convenience_advanced_features.py
1068
1090
  tests/unit/test_ecosystem.py
1069
1091
  tests/unit/test_edge_cases.py
1092
+ tests/unit/test_environment.py
1070
1093
  tests/unit/test_evaluator_long_program_stress.py
1071
1094
  tests/unit/test_exact_phase10.py
1072
1095
  tests/unit/test_find_load_keywords.py
1073
1096
  tests/unit/test_hybrid.py
1097
+ tests/unit/test_lexer.py
1074
1098
  tests/unit/test_lexer_directly.py
1075
1099
  tests/unit/test_long_file_stability.py
1076
1100
  tests/unit/test_map_fix.py
@@ -1090,10 +1114,35 @@ tests/unit/test_renderer_keywords.py
1090
1114
  tests/unit/test_restrict_trail_sandbox.py
1091
1115
  tests/unit/test_runner.py
1092
1116
  tests/unit/test_seal_components.py
1117
+ tests/unit/test_security_classes.py
1093
1118
  tests/unit/test_type_system.py
1094
1119
  tests/unit/test_virtual_filesystem.py
1095
1120
  tests/unit/test_zexus_phases.py
1096
1121
  tests/unit/test_zexus_program.py
1122
+ tests/v183_fixes/test_advanced_contracts.zx
1123
+ tests/v183_fixes/test_edge_cases_basic.zx
1124
+ tests/v183_fixes/test_edge_cases_collections.zx
1125
+ tests/v183_fixes/test_edge_cases_contracts.zx
1126
+ tests/v183_fixes/test_edge_cases_control_flow.zx
1127
+ tests/v183_fixes/test_edge_cases_cross_method.zx
1128
+ tests/v183_fixes/test_edge_cases_functions.zx
1129
+ tests/v183_fixes/test_entities.zx
1130
+ tests/v183_fixes/test_error_handling.zx
1131
+ tests/v183_fixes/test_integration.zx
1132
+ tests/v183_fixes/test_q001_map_has.zx
1133
+ tests/v183_fixes/test_q002_list_is_empty.zx
1134
+ tests/v183_fixes/test_r003_self_keyword.zx
1135
+ tests/v183_fixes/test_r004_auto_init.zx
1136
+ tests/v183_fixes/test_r005_r013_multi_state.zx
1137
+ tests/v183_fixes/test_r006_indexed_foreach.zx
1138
+ tests/v183_fixes/test_r007_map_foreach.zx
1139
+ tests/v183_fixes/test_r009_nested_assign.zx
1140
+ tests/v183_fixes/test_r016_mixed_arithmetic.zx
1141
+ tests/v183_fixes/test_r017_float_modulo.zx
1142
+ tests/v183_fixes/test_real_world_tokens.zx
1143
+ tests/v183_fixes/test_scope_closures.zx
1144
+ tests/v183_fixes/test_string_arithmetic.zx
1145
+ tests/v183_fixes/test_vm_stability.zx
1097
1146
  tests/vm/benchmark_cache.py
1098
1147
  tests/vm/benchmark_memory.py
1099
1148
  tests/vm/benchmark_parallel_vm.py
@@ -1103,6 +1152,7 @@ tests/vm/test_async_optimizer.py
1103
1152
  tests/vm/test_async_verification.py
1104
1153
  tests/vm/test_binary_bytecode.py
1105
1154
  tests/vm/test_blockchain_opcodes.py
1155
+ tests/vm/test_bytecode_optimizer.py
1106
1156
  tests/vm/test_cache.py
1107
1157
  tests/vm/test_comprehensive_vm_verification.py
1108
1158
  tests/vm/test_integration_all_phases.py
@@ -1127,6 +1177,7 @@ tests/vm/test_vm_async_integration.py
1127
1177
  tests/vm/test_vm_memory_pool_integration.py
1128
1178
  tests/vm/test_vm_peephole_integration.py
1129
1179
  tests/vm/test_vm_ssa_integration.py
1180
+ tests/vm/test_vm_v183_functions.py
1130
1181
  tests/zx_features/harness.zx
1131
1182
  tests/zx_features/run_all.sh
1132
1183
  tests/zx_features/test_10_upgrade_verify_accel.zx