warning: unused imports: `BasicBlockIdGenerator`, `BasicBlock`, `CompareOp`, `EffectMask`, `MirFunction`, and `ValueIdGenerator` --> src/mir/loop_builder.rs:9:21 | 9 | MirInstruction, BasicBlock, BasicBlockId, MirFunction, ValueId, | ^^^^^^^^^^ ^^^^^^^^^^^ 10 | ConstValue, CompareOp, BasicBlockIdGenerator, ValueIdGenerator, EffectMask | ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^ ^^^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default warning: unused import: `HashSet` --> src/mir/loop_builder.rs:13:33 | 13 | use std::collections::{HashMap, HashSet}; | ^^^^^^^ warning: unexpected `cfg` condition value: `llvm` --> src/backend/mod.rs:13:7 | 13 | #[cfg(feature = "llvm")] | ^^^^^^^^^^^^^^^^ | = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` = help: consider adding `llvm` as a feature in `Cargo.toml` = note: see for more information about checking conditional configuration = note: `#[warn(unexpected_cfgs)]` on by default warning: unexpected `cfg` condition value: `llvm` --> src/backend/mod.rs:23:7 | 23 | #[cfg(feature = "llvm")] | ^^^^^^^^^^^^^^^^ | = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` = help: consider adding `llvm` as a feature in `Cargo.toml` = note: see for more information about checking conditional configuration warning: unused import: `MirInstruction` --> src/backend/vm_phi.rs:9:41 | 9 | use crate::mir::{BasicBlockId, ValueId, MirInstruction}; | ^^^^^^^^^^^^^^ warning: unused import: `super::Usize` --> src/bid/types.rs:1:5 | 1 | use super::Usize; | ^^^^^^^^^^^^ warning: unused import: `std::os::raw::c_char` --> src/bid/plugin_api.rs:2:5 | 2 | use std::os::raw::c_char; | ^^^^^^^^^^^^^^^^^^^^ warning: unused imports: `NyashHostVtable`, `NyashMethodInfo`, and `NyashPluginInfo` --> src/bid/plugins/filebox/mod.rs:7:18 | 7 | use crate::bid::{NyashPluginInfo, NyashMethodInfo, NyashHostVtable}; | ^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^ warning: unused imports: `SeekFrom` and `Seek` --> src/bid/plugins/filebox/mod.rs:10:28 | 10 | use std::io::{Read, Write, Seek, SeekFrom}; | ^^^^ ^^^^^^^^ warning: unused imports: `c_char` and `c_void` --> src/bid/plugins/filebox/mod.rs:11:20 | 11 | use std::os::raw::{c_char, c_void}; | ^^^^^^ ^^^^^^ warning: unused imports: `CStr` and `CString` --> src/bid/plugins/filebox/mod.rs:13:16 | 13 | use std::ffi::{CStr, CString}; | ^^^^ ^^^^^^^ warning: unused import: `std::ffi::c_void` --> src/bid/loader.rs:3:5 | 3 | use std::ffi::c_void; | ^^^^^^^^^^^^^^^^ warning: unused imports: `TlvDecoder` and `TlvEncoder` --> src/bid/generic_plugin_box.rs:2:23 | 2 | use crate::bid::tlv::{TlvEncoder, TlvDecoder}; | ^^^^^^^^^^ ^^^^^^^^^^ warning: unused import: `crate::bid::types::BidTag` --> src/bid/generic_plugin_box.rs:3:5 | 3 | use crate::bid::types::BidTag; | ^^^^^^^^^^^^^^^^^^^^^^^^^ warning: unused import: `BoxBase` --> src/runtime/plugin_loader_v2.rs:7:43 | 7 | use crate::box_trait::{NyashBox, BoxCore, BoxBase, StringBox}; | ^^^^^^^ warning: unused import: `std::ffi::c_void` --> src/runtime/plugin_loader_v2.rs:11:5 | 11 | use std::ffi::c_void; | ^^^^^^^^^^^^^^^^ warning: unused variable: `registry` --> src/box_factory/plugin.rs:53:13 | 53 | let registry = get_global_registry(); | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_registry` | = note: `#[warn(unused_variables)]` on by default warning: unused variable: `args` --> src/instance_v2.rs:147:28 | 147 | pub fn init(&mut self, args: &[Box]) -> Result<(), String> { | ^^^^ help: if this is intentional, prefix it with an underscore: `_args` warning: unused variable: `nyash_value` --> src/instance_v2.rs:289:21 | 289 | if let Some(nyash_value) = self.fields_ng.lock().unwrap().get(field_name) { | ^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_nyash_value` warning: unused variable: `block_id` --> src/mir/loop_builder.rs:246:39 | 246 | fn mark_block_unsealed(&mut self, block_id: BasicBlockId) -> Result<(), String> { | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_block_id` warning: unused variable: `block_id` --> src/mir/loop_builder.rs:273:49 | 273 | fn get_variable_at_block(&self, name: &str, block_id: BasicBlockId) -> Option { | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_block_id` warning: unused variable: `dst` --> src/backend/vm_phi.rs:48:9 | 48 | dst: ValueId, | ^^^ help: if this is intentional, prefix it with an underscore: `_dst` warning: unused variable: `f` --> src/bid/plugin_api.rs:167:36 | 167 | pub fn with_alloc(mut self, f: F) -> Self | ^ help: if this is intentional, prefix it with an underscore: `_f` warning: variable does not need to be mutable --> src/bid/plugin_api.rs:167:26 | 167 | pub fn with_alloc(mut self, f: F) -> Self | ----^^^^ | | | help: remove this `mut` | = note: `#[warn(unused_mut)]` on by default warning: unused variable: `f` --> src/bid/plugin_api.rs:176:35 | 176 | pub fn with_free(mut self, f: F) -> Self | ^ help: if this is intentional, prefix it with an underscore: `_f` warning: variable does not need to be mutable --> src/bid/plugin_api.rs:176:25 | 176 | pub fn with_free(mut self, f: F) -> Self | ----^^^^ | | | help: remove this `mut` warning: unused variable: `f` --> src/bid/plugin_api.rs:183:34 | 183 | pub fn with_log(mut self, f: F) -> Self | ^ help: if this is intentional, prefix it with an underscore: `_f` warning: variable does not need to be mutable --> src/bid/plugin_api.rs:183:24 | 183 | pub fn with_log(mut self, f: F) -> Self | ----^^^^ | | | help: remove this `mut` warning: unused variable: `args` --> src/runtime/plugin_loader_v2.rs:236:46 | 236 | pub fn create_box(&self, box_type: &str, args: &[Box]) -> BidResult> { | ^^^^ help: if this is intentional, prefix it with an underscore: `_args` warning: type `FileMode` is more private than the item `FileBoxRegistry::open` --> src/bid/plugins/filebox/mod.rs:44:5 | 44 | pub fn open(&mut self, path: &str, mode: FileMode) -> Result { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ method `FileBoxRegistry::open` is reachable at visibility `pub` | note: but type `FileMode` is only usable at visibility `pub(self)` --> src/bid/plugins/filebox/mod.rs:29:1 | 29 | enum FileMode { | ^^^^^^^^^^^^^ = note: `#[warn(private_interfaces)]` on by default warning: field `block_var_maps` is never read --> src/mir/loop_builder.rs:35:5 | 27 | pub struct LoopBuilder<'a> { | ----------- field in this struct ... 35 | block_var_maps: HashMap>, | ^^^^^^^^^^^^^^ | = note: `#[warn(dead_code)]` on by default warning: fields `type_name_holder` and `method_holders` are never read --> src/bid/metadata.rs:148:5 | 143 | pub struct PluginMetadata { | -------------- fields in this struct ... 148 | type_name_holder: Option, | ^^^^^^^^^^^^^^^^ 149 | method_holders: Vec<(NyashMethodInfo, CString)>, | ^^^^^^^^^^^^^^ warning: fields `path` and `mode` are never read --> src/bid/plugins/filebox/mod.rs:24:5 | 22 | struct FileBoxState { | ------------ fields in this struct 23 | file: File, 24 | path: String, | ^^^^ 25 | mode: FileMode, | ^^^^ warning: fields `box_types` and `init_fn` are never read --> src/runtime/plugin_loader_v2.rs:20:5 | 15 | pub struct LoadedPluginV2 { | -------------- fields in this struct ... 20 | box_types: Vec, | ^^^^^^^^^ ... 23 | init_fn: Option i32>, | ^^^^^^^ warning: unused `Result` that must be used --> src/mir/loop_builder.rs:62:9 | 62 | self.add_predecessor(header_id, preheader_id); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: this `Result` may be an `Err` variant, which should be handled = note: `#[warn(unused_must_use)]` on by default help: use `let _ = ...` to ignore the resulting value | 62 | let _ = self.add_predecessor(header_id, preheader_id); | +++++++ warning: unused `Result` that must be used --> src/mir/loop_builder.rs:66:9 | 66 | self.mark_block_unsealed(header_id); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: this `Result` may be an `Err` variant, which should be handled help: use `let _ = ...` to ignore the resulting value | 66 | let _ = self.mark_block_unsealed(header_id); | +++++++ warning: unused `Result` that must be used --> src/mir/loop_builder.rs:78:9 | 78 | self.add_predecessor(body_id, header_id); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: this `Result` may be an `Err` variant, which should be handled help: use `let _ = ...` to ignore the resulting value | 78 | let _ = self.add_predecessor(body_id, header_id); | +++++++ warning: unused `Result` that must be used --> src/mir/loop_builder.rs:79:9 | 79 | self.add_predecessor(after_loop_id, header_id); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: this `Result` may be an `Err` variant, which should be handled help: use `let _ = ...` to ignore the resulting value | 79 | let _ = self.add_predecessor(after_loop_id, header_id); | +++++++ warning: unused `Result` that must be used --> src/mir/loop_builder.rs:93:9 | 93 | self.add_predecessor(header_id, latch_id); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: this `Result` may be an `Err` variant, which should be handled help: use `let _ = ...` to ignore the resulting value | 93 | let _ = self.add_predecessor(header_id, latch_id); | +++++++ warning: creating a shared reference to mutable static --> src/bid/plugins/filebox/mod.rs:102:12 | 102 | if FILEBOX_REGISTRY.is_none() { | ^^^^^^^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static | = note: for more information, see = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives = note: `#[warn(static_mut_refs)]` on by default warning: creating a shared reference to mutable static --> src/bid/plugins/filebox/mod.rs:105:9 | 105 | FILEBOX_REGISTRY.as_ref().unwrap().clone() | ^^^^^^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static | = note: for more information, see = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives warning: unused imports: `BoolBox`, `IntegerBox`, and `StringBox` --> src/ast.rs:885:28 | 885 | use crate::box_trait::{StringBox, IntegerBox, BoolBox}; | ^^^^^^^^^ ^^^^^^^^^^ ^^^^^^^ | = note: `#[warn(unused_imports)]` on by default warning: unused import: `Mutex` --> src/instance_v2.rs:387:26 | 387 | use std::sync::{Arc, Mutex}; | ^^^^^ warning: unused imports: `BasicBlockIdGenerator`, `BasicBlock`, `CompareOp`, `EffectMask`, `MirFunction`, and `ValueIdGenerator` --> src/mir/loop_builder.rs:9:21 | 9 | MirInstruction, BasicBlock, BasicBlockId, MirFunction, ValueId, | ^^^^^^^^^^ ^^^^^^^^^^^ 10 | ConstValue, CompareOp, BasicBlockIdGenerator, ValueIdGenerator, EffectMask | ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^ ^^^^^^^^^^ warning: unused import: `BasicBlock` --> src/mir/verification.rs:311:75 | 311 | use crate::mir::{MirFunction, FunctionSignature, MirType, EffectMask, BasicBlock}; | ^^^^^^^^^^ warning: unused imports: `BasicBlock`, `EffectMask`, `FunctionSignature`, `MirFunction`, `MirModule`, and `MirType` --> src/backend/vm.rs:860:22 | 860 | use crate::mir::{MirModule, MirFunction, FunctionSignature, MirType, EffectMask, BasicBlock}; | ^^^^^^^^^ ^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^ ^^^^^^^ ^^^^^^^^^^ ^^^^^^^^^^ warning: unused imports: `BidHandle` and `BoxTypeId` --> src/runtime/tests.rs:10:22 | 10 | use crate::bid::{BidHandle, BoxTypeId}; | ^^^^^^^^^ ^^^^^^^^^ warning: variable does not need to be mutable --> src/mir/basic_block.rs:314:13 | 314 | let mut bb = BasicBlock::new(bb_id); | ----^^ | | | help: remove this `mut` | = note: `#[warn(unused_mut)]` on by default warning: unused variable: `child` --> src/mir/ownership_verifier_simple.rs:313:13 | 313 | let child = value_gen.next(); | ^^^^^ help: if this is intentional, prefix it with an underscore: `_child` warning: variable does not need to be mutable --> src/bid/plugin_api.rs:167:26 | 167 | pub fn with_alloc(mut self, f: F) -> Self | ----^^^^ | | | help: remove this `mut` warning: variable does not need to be mutable --> src/tests/box_tests.rs:11:13 | 11 | let mut array = ArrayBox::new(); | ----^^^^^ | | | help: remove this `mut` warning: variable does not need to be mutable --> src/tests/box_tests.rs:90:13 | 90 | let mut stream = NyashStreamBox::from_data(vec![72, 101, 108, 108, 111]); // "Hello" | ----^^^^^^ | | | help: remove this `mut` warning: `nyash-rust` (lib) generated 41 warnings (run `cargo fix --lib -p nyash-rust` to apply 17 suggestions) warning: `nyash-rust` (lib test) generated 50 warnings (39 duplicates) (run `cargo fix --lib -p nyash-rust --tests` to apply 10 suggestions) warning: unexpected `cfg` condition value: `llvm` --> src/runner.rs:22:7 | 22 | #[cfg(feature = "llvm")] | ^^^^^^^^^^^^^^^^ | = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` = help: consider adding `llvm` as a feature in `Cargo.toml` = note: see for more information about checking conditional configuration warning: unexpected `cfg` condition value: `llvm` --> src/runner.rs:503:15 | 503 | #[cfg(feature = "llvm")] | ^^^^^^^^^^^^^^^^ | = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` = help: consider adding `llvm` as a feature in `Cargo.toml` = note: see for more information about checking conditional configuration warning: unexpected `cfg` condition value: `llvm` --> src/runner.rs:526:19 | 526 | #[cfg(not(feature = "llvm"))] | ^^^^^^^^^^^^^^^^ | = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` = help: consider adding `llvm` as a feature in `Cargo.toml` = note: see for more information about checking conditional configuration warning: variable does not need to be mutable --> src/runner.rs:286:17 | 286 | let mut printer = if self.config.mir_verbose { | ----^^^^^^^ | | | help: remove this `mut` | = note: `#[warn(unused_mut)]` on by default warning: type `FileMode` is more private than the item `bid::plugins::filebox::FileBoxRegistry::open` --> src/bid/plugins/filebox/mod.rs:44:5 | 44 | pub fn open(&mut self, path: &str, mode: FileMode) -> Result { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ method `bid::plugins::filebox::FileBoxRegistry::open` is reachable at visibility `pub` | note: but type `FileMode` is only usable at visibility `pub(self)` --> src/bid/plugins/filebox/mod.rs:29:1 | 29 | enum FileMode { | ^^^^^^^^^^^^^ = note: `#[warn(private_interfaces)]` on by default warning: unused `std::result::Result` that must be used --> src/mir/loop_builder.rs:62:9 | 62 | self.add_predecessor(header_id, preheader_id); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: this `Result` may be an `Err` variant, which should be handled = note: `#[warn(unused_must_use)]` on by default help: use `let _ = ...` to ignore the resulting value | 62 | let _ = self.add_predecessor(header_id, preheader_id); | +++++++ warning: unused `std::result::Result` that must be used --> src/mir/loop_builder.rs:66:9 | 66 | self.mark_block_unsealed(header_id); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: this `Result` may be an `Err` variant, which should be handled help: use `let _ = ...` to ignore the resulting value | 66 | let _ = self.mark_block_unsealed(header_id); | +++++++ warning: unused `std::result::Result` that must be used --> src/mir/loop_builder.rs:78:9 | 78 | self.add_predecessor(body_id, header_id); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: this `Result` may be an `Err` variant, which should be handled help: use `let _ = ...` to ignore the resulting value | 78 | let _ = self.add_predecessor(body_id, header_id); | +++++++ warning: unused `std::result::Result` that must be used --> src/mir/loop_builder.rs:79:9 | 79 | self.add_predecessor(after_loop_id, header_id); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: this `Result` may be an `Err` variant, which should be handled help: use `let _ = ...` to ignore the resulting value | 79 | let _ = self.add_predecessor(after_loop_id, header_id); | +++++++ warning: unused `std::result::Result` that must be used --> src/mir/loop_builder.rs:93:9 | 93 | self.add_predecessor(header_id, latch_id); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: this `Result` may be an `Err` variant, which should be handled help: use `let _ = ...` to ignore the resulting value | 93 | let _ = self.add_predecessor(header_id, latch_id); | +++++++ warning: struct `NyashNotepad` is never constructed --> examples/simple_notepad_win.rs:58:8 | 58 | struct NyashNotepad { | ^^^^^^^^^^^^ | = note: `NyashNotepad` has a derived impl for the trait `Default`, but this is intentionally ignored during dead code analysis = note: `#[warn(dead_code)]` on by default warning: associated function `new` is never used --> examples/simple_notepad_win.rs:64:8 | 63 | impl NyashNotepad { | ----------------- associated function in this implementation 64 | fn new() -> Self { | ^^^ warning: unused import: `std::collections::HashMap` --> tests/integration_tests.rs:9:5 | 9 | use std::collections::HashMap; | ^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default warning: function `execute_nyash_code` is never used --> tests/integration_tests.rs:12:4 | 12 | fn execute_nyash_code(code: &str) -> Result { | ^^^^^^^^^^^^^^^^^^ | = note: `#[warn(dead_code)]` on by default warning: unused import: `VMValue` --> tests/mir_phase6_vm_ref_ops.rs:11:31 | 11 | use nyash_rust::backend::{VM, VMValue}; | ^^^^^^^ | = note: `#[warn(unused_imports)]` on by default warning: unused import: `NyashBox` --> tests/mir_phase6_vm_ref_ops.rs:12:41 | 12 | use nyash_rust::box_trait::{IntegerBox, NyashBox}; | ^^^^^^^^ warning: unused variable: `vm` --> tests/mir_phase6_vm_ref_ops.rs:139:13 | 139 | let mut vm = VM::new(); | ^^ help: if this is intentional, prefix it with an underscore: `_vm` | = note: `#[warn(unused_variables)]` on by default warning: variable does not need to be mutable --> tests/mir_phase6_vm_ref_ops.rs:139:9 | 139 | let mut vm = VM::new(); | ----^^ | | | help: remove this `mut` | = note: `#[warn(unused_mut)]` on by default warning: unexpected `cfg` condition value: `mir-v2` --> tests/mir_phase8_5_hierarchical_25_instructions.rs:7:8 | 7 | #![cfg(feature = "mir-v2")] | ^^^^^^^^^^^^^^^^^^ | = note: expected values for `feature` are: `all-examples`, `cli`, `default`, `dynamic-file`, `gui`, `gui-examples`, and `wasm-backend` = help: consider adding `mir-v2` as a feature in `Cargo.toml` = note: see for more information about checking conditional configuration = note: `#[warn(unexpected_cfgs)]` on by default warning: unused import: `BoxCore` --> src/main.rs:71:32 | 71 | use box_trait::{StringBox, BoxCore, NyashBox}; | ^^^^^^^ warning: variable does not need to be mutable --> src/runner.rs:286:17 | 286 | let mut printer = if self.config.mir_verbose { | ----^^^^^^^ | | | help: remove this `mut` warning: `nyash-rust` (bin "nyash") generated 45 warnings (35 duplicates) (run `cargo fix --bin "nyash"` to apply 1 suggestion) warning: `nyash-rust` (example "simple_notepad_win") generated 2 warnings warning: `nyash-rust` (test "integration_tests") generated 2 warnings (run `cargo fix --test "integration_tests"` to apply 1 suggestion) warning: `nyash-rust` (test "mir_phase6_vm_ref_ops") generated 4 warnings (run `cargo fix --test "mir_phase6_vm_ref_ops"` to apply 2 suggestions) warning: `nyash-rust` (test "mir_phase8_5_hierarchical_25_instructions") generated 1 warning warning: `nyash-rust` (bin "nyash" test) generated 53 warnings (51 duplicates) (run `cargo fix --bin "nyash" --tests` to apply 2 suggestions) Finished `test` profile [unoptimized + debuginfo] target(s) in 2.19s Running unittests src/lib.rs (target/debug/deps/nyash_rust-027bd4c76143e77b) running 156 tests test bid::metadata::tests::test_host_vtable ... ok test box_arithmetic::tests::test_subtract_box ... ok test box_arithmetic::tests::test_multiply_box ... ok πŸš€ Running benchmark: bench_light test box_arithmetic::tests::test_add_box_integers ... ok test bid::types::tests::test_handle_packing ... ok test box_arithmetic::tests::test_compare_box ... ok test box_operators::tests::test_boolean_arithmetic ... ok test box_arithmetic::tests::test_modulo_box ... ok test bid::metadata::tests::test_plugin_metadata_creation ... ok test bid::tlv::tests::test_encode_decode_primitives ... ok test bid::tlv::tests::test_encode_decode_handle ... ok test box_operators::tests::test_integer_addition ... ok test box_arithmetic::tests::test_modulo_chip8_pattern ... ok test ast::tests::test_binary_operator ... ok test ast::tests::test_ast_node_creation ... ok test backend::vm::tests::test_binary_operations ... ok test ast::tests::test_method_call ... ok test backend::vm_phi::tests::test_phi_selection ... ok test ast::tests::test_binary_operation ... ok test box_arithmetic::tests::test_add_box_strings ... ok test box_operators::tests::test_string_concatenation ... ok test bid::plugin_api::tests::test_plugin_handle ... ok test box_factory::tests::test_registry_creation ... ok test box_operators::tests::test_string_repetition ... okπŸ” DEBUG: Starting interpreter execution... πŸ” DEBUG: execute_node called with node type: Program test bid::types::tests::test_type_tags ... okπŸ” DEBUG: Executing program with 1 statements πŸ” DEBUG: Executing statement test box_operators::tests::test_can_add_with ... ok1 of 1: test box_operators::tests::test_dynamic_addition ... okBoxDeclaration test box_arithmetic::tests::test_divide_by_zero ... ok test box_trait::tests::test_add_box_integers ... ok test bid::types::tests::test_arg_type_mapping ... ok test box_arithmetic::tests::test_modulo_by_zero ... ok test box_arithmetic::tests::test_divide_box ... ok test backend::vm::tests::test_basic_vm_execution ... ok test box_trait::tests::test_add_box_strings ... ok test box_trait::tests::test_bool_box_creation ... ok πŸ” execute_statement called with node type: "Instance: StringBox BoxDeclaration"Instance: MyBox test box_trait::tests::test_box_equality ... okπŸ” DEBUG: Starting interpreter execution... πŸ” DEBUG: execute_node called with node type: Programtest box_trait::tests::test_box_ids_unique ... ok πŸ” DEBUG: Executing program with 1test ast::tests::test_complex_ast ... ok statements πŸ” DEBUG: Executing statement 1test box_trait::tests::test_integer_box_creation ... ok of 1 : Assignmenttest box_trait::tests::test_string_box_creation ... ok πŸ” execute_statement called with node type: "test bid::bridge::tests::test_box_registry ... okAssignment" test bid::bridge::tests::test_future_box_bid_conversion ... okπŸ” About to call execute_assignment... πŸ” execute_assignment called, evaluating value expression... test bid::bridge::tests::test_integer_box_bid_conversion ... okπŸ” execute_new called for class: IntegerBox , with 1test bid::bridge::tests::test_string_box_bid_conversion ... ok arguments πŸ” Trying unified registry for class: IntegerBoxtest box_trait::tests::test_void_box ... ok 🏭 Unified registry created: IntegerBoxtest boxes::null_box::tests::test_get_or_default ... ok πŸ” execute_new called for class: IntegerBoxtest boxes::null_box::tests::test_null_check ... ok, with 1 arguments test boxes::null_box::tests::test_null_creation ... okπŸ” Trying unified registry for class: IntegerBox test boxes::null_box::tests::test_null_equality ... ok🌍 statics namespace created in GlobalBox successfully πŸ”₯ Static Box 'Maintest cli::tests::test_default_config ... ok' definition registered in statics namespace πŸ” DEBUG: Starting interpreter execution... test cli::tests::test_parse_debug_fuel ... okπŸ” DEBUG: execute_node called with node type: Program test environment::tests::test_error_handling ... okπŸ” DEBUG: Executing program with 4 statements test environment::tests::test_global_environment ... okπŸ” DEBUG: Executing statement 1 of 4test environment::tests::test_nested_scopes ... ok: BoxDeclaration test environment::tests::test_python_compat ... okπŸ” execute_statement called with node type: " BoxDeclaration"test environment::tests::test_scope_info ... ok πŸ” DEBUG: Starting interpreter execution... test environment::tests::test_variable_setting ... okπŸ” DEBUG: execute_node called with node type: Program test environment::tests::test_variable_shadowing ... okπŸ” DEBUG: Executing program with 2 statements test finalization::tests::test_finalization_tracking ... okπŸ” DEBUG: Executing statement 1 of 2test instance_v2::tests::test_field_operations ... ok: Assignment test instance_v2::tests::test_from_any_box_creation ... okπŸ” execute_statement called with node type: " Assignment"test instance_v2::tests::test_from_declaration_creation ... ok πŸ” About to call execute_assignment... test instance_v2::tests::test_unified_approach ... okπŸ” execute_assignment called, evaluating value expression... πŸ” execute_new called for class: IntegerBoxtest bid::plugins::filebox::tests::test_filebox_plugin ... ok, with 1 arguments test mir::basic_block::tests::test_basic_block_creation ... okπŸ” Trying unified registry for class: IntegerBox test mir::basic_block::tests::test_basic_block_id_generator ... okπŸ” DEBUG: Starting interpreter execution... πŸ” DEBUG: execute_node called with node type: Programtest config::nyash_toml_v2::tests::test_parse_v2_config ... ok πŸ” DEBUG: Executing program with 2test mir::basic_block::tests::test_branch_successors ... ok statements πŸ” DEBUG: Executing statement 1test mir::basic_block::tests::test_instruction_addition ... ok of 2 : Assignmenttest mir::basic_block::tests::test_phi_instruction_ordering ... ok πŸ” execute_statement called with node type: "test mir::basic_block::tests::test_terminator_addition ... okAssignment" test mir::basic_block::tests::test_value_tracking ... okπŸ” About to call execute_assignment... πŸ” execute_assignment called, evaluating value expression... test mir::builder::tests::test_binary_op_building ... okπŸ” execute_new called for class: BoolBox , with 1test mir::builder::tests::test_if_statement_building ... ok arguments πŸ” Trying unified registry for class: BoolBoxtest mir::builder::tests::test_literal_building ... ok 🏭 Unified registry created: IntegerBoxtest mir::effect::tests::test_effect_combination ... ok test mir::effect::tests::test_effect_display ... πŸ” DEBUG: Statement 1ok completed test mir::effect::tests::test_effect_mask_creation ... okπŸ” DEBUG: Executing statement 2 of 4test mir::effect::tests::test_effect_names ... ok: Assignment test mir::effect::tests::test_effect_union ... okπŸ” execute_statement called with node type: " Assignment"test mir::effect::tests::test_parallel_safety ... ok πŸ” About to call execute_assignment... test mir::function::tests::test_function_creation ... okπŸ” execute_assignment called, evaluating value expression... πŸ” execute_new called for class: TestBoxtest mir::function::tests::test_function_stats ... ok, with 0 arguments test mir::function::tests::test_module_creation ... okπŸ” Trying unified registry for class: TestBox test mir::function::tests::test_value_id_generation ... okπŸ” DEBUG: Statement 1 completed test mir::instruction::tests::test_barrier_instructions ... okπŸ” try_add_operation: left=IntegerBox , right=IntegerBoxtest mir::instruction::tests::test_binop_instruction ... ok πŸ” After unwrap: left=IntegerBoxtest mir::instruction::tests::test_call_instruction ... ok, right=IntegerBox test mir::instruction::tests::test_const_instruction ... okπŸ” Checking StringBox downcast... πŸ” StringBox downcast FAILED! test mir::instruction::tests::test_extern_call_instruction ... ok❌ Interpreter error: Invalid operation: Addition not supported between IntegerBox and IntegerBox test mir::instruction::tests::test_ref_get_instruction ... ok🏭 Unified registry created: IntegerBox test mir::instruction::tests::test_ref_new_instruction ... ok🌍 statics namespace already exists - skipping creation πŸ” DEBUG: Interpreter execution completed test mir::instruction::tests::test_ref_set_instruction ... okπŸ” execute_assignment: value expression evaluated successfully thread 'interpreter::core::tests::test_arithmetic' panicked at src/interpreter/core.rs:590:34: called `Result::unwrap()` on an `Err` value: InvalidOperation { message: "Addition not supported between IntegerBox and IntegerBox" } note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace 🏭 Unified registry created: BoolBoxtest mir::instruction::tests::test_weak_load_instruction ... ok πŸ”₯ Static box 'Maintest mir::instruction::tests::test_weak_new_instruction ... ok' instance registered in statics namespace πŸ” DEBUG: Statement 1test mir::instruction_v2::tests::test_effect_categories ... ok completed πŸ” DEBUG: Executing statement 2test mir::instruction_v2::tests::test_instruction_count ... of 2ok : Printtest mir::instruction_v2::tests::test_ownership_operations ... ok πŸ” execute_statement called with node type: "test mir::ownership_verifier_simple::tests::test_basic_ref_set ... okPrint" test mir::ownership_verifier_simple::tests::test_ownership_forest_basic ... okπŸ” execute_statement called with node type: " MethodCall"test mir::ownership_verifier_simple::tests::test_weak_reference_tracking ... ok πŸ” execute_assignment: value expression evaluated successfully test mir::printer::tests::test_empty_module_printing ... ok🏭 Unified registry created: TestBox test mir::printer::tests::test_function_printing ... okπŸ” DEBUG: resolve_variable: name='x', local_vars=[] test mir::printer::tests::test_verbose_printing ... okπŸ” DEBUG: Checking GlobalBox for 'x '... test mir::tests::test_basic_mir_compilation ... okπŸ” DEBUG: Found 'x ' in GlobalBox test mir::tests::test_loop_compilation ... πŸ” execute_assignment: value expression evaluated successfully okπŸ” DEBUG: resolve_variable: name='statics', local_vars=[] 42 πŸ” DEBUG: Checking GlobalBox for 'staticstest mir::tests::test_mir_dump ... ok'... πŸ” DEBUG: Statement 2test mir::tests::test_throw_compilation ... ok completed πŸ” DEBUG: Executing statement 3test mir::tests::test_try_catch_compilation ... ok of 4 : Assignmenttest mir::value_id::tests::test_local_id_creation ... ok πŸ” execute_statement called with node type: "test mir::value_id::tests::test_local_id_generator ... okAssignment" test mir::value_id::tests::test_value_id_creation ... okπŸ” About to call execute_assignment... πŸ” execute_assignment called, evaluating value expression... test mir::value_id::tests::test_value_id_generator ... okπŸ” execute_new called for class: StringBox , with 1test mir::value_id::tests::test_value_id_ordering ... ok arguments πŸ” Trying unified registry for class: StringBoxtest mir::verification::tests::test_undefined_value_detection ... ok πŸ” DEBUG: Statement 1test mir::verification::tests::test_valid_function_verification ... ok completed πŸ” DEBUG: Executing statement 2test runtime::box_registry::tests::test_builtin_registration ... ok of 2 : Iftest runtime::box_registry::tests::test_plugin_override ... ok πŸ” execute_statement called with node type: "test runtime::plugin_config::tests::test_parse_empty_config ... okIf" test runtime::plugin_config::tests::test_parse_simple_config ... ok🏭 Unified registry created: StringBox test runtime::plugin_config::tests::test_parse_with_comments ... okπŸ” execute_assignment: value expression evaluated successfully πŸ” DEBUG: Found 'staticstest runtime::tests::tests::test_box_registry_builtin ... ok' in GlobalBox πŸ” DEBUG: resolve_variable: name='x', local_vars=[]test runtime::tests::tests::test_box_registry_plugin_override ... ok πŸ” DEBUG: Checking GlobalBox for 'xtest runtime::tests::tests::test_multiple_plugin_types ... ok'... πŸ” DEBUG: Found 'xtest runtime::tests::tests::test_plugin_config_parsing ... ok' in GlobalBox test runtime::tests::tests::test_transparent_box_switching ... πŸ” execute_statement called with node type: "ok Assignment"test tests::box_tests::tests::test_array_box_nyash_trait ... ok test tests::box_tests::tests::test_box_id_uniqueness ... πŸ” About to call execute_assignment... ok πŸ” execute_assignment called, evaluating value expression... test tests::box_tests::tests::test_buffer_box_nyash_trait ... okπŸ” execute_new called for class: StringBox , with 1test tests::box_tests::tests::test_future_box_nyash_trait ... ok arguments test tests::box_tests::tests::test_result_box_nyash_trait ... πŸ” Trying unified registry for class: StringBoxok test tests::box_tests::tests::test_stream_box_nyash_trait ... okπŸ” DEBUG: resolve_variable: name='obj', local_vars=[] test tokenizer::tests::test_comments ... ok πŸ” DEBUG: Checking GlobalBox for 'objtest tests::box_tests::tests::test_json_box_nyash_trait ... ok'... test tokenizer::tests::test_complex_code ... πŸ” DEBUG: Found 'objok ' in GlobalBox test tokenizer::tests::test_error_handling ... ok🏭 Unified registry created: StringBox test tokenizer::tests::test_identifier ... ok πŸ” execute_assignment: value expression evaluated successfully test tokenizer::tests::test_line_numbers ... okπŸ” DEBUG: Statement test tokenizer::tests::test_number_literal ... 2 completed ok πŸ” DEBUG: Statement 3test tokenizer::tests::test_operators ... ok completed test tokenizer::tests::test_simple_tokens ... πŸ” DEBUG: Executing statement 4ok of 4test tokenizer::tests::test_string_literal ... ok: Assignment test value::tests::test_basic_creation ... ok πŸ” execute_statement called with node type: "test value::tests::test_cross_type_equality ... okAssignment" πŸ” About to call execute_assignment... test interpreter::core::tests::test_arithmetic ... FAILEDπŸ” execute_assignment called, evaluating value expression... πŸ” stdlib not initialized for method call test value::tests::test_object_creation ... okπŸ” DEBUG: Interpreter execution completed βœ… FIELD ACCESS: Returning shared reference id=157test value::tests::test_type_conversion ... ok πŸ” DEBUG: Statement 2test value::tests::test_type_names ... ok completed πŸ” DEBUG: resolve_variable: name='obj', local_vars=[]test value::tests::test_weak_reference_basic ... ok πŸ” DEBUG: Checking GlobalBox for 'objtest value::tests::test_weak_reference_drop ... ok'... πŸ” DEBUG: Found 'objtest value::tests::test_weak_reference_equality ... ok' in GlobalBox πŸ” execute_statement called with node type: "test value::tests::test_weak_reference_string_representation ... okLocal" test interpreter::core::tests::test_simple_execution ... okπŸ” DEBUG: Interpreter execution completed πŸ” execute_statement called with node type: "Return" πŸ” execute_statement called with node type: "Assignment" πŸ” About to call execute_assignment... πŸ” execute_assignment called, evaluating value expression... πŸ” execute_new called for class: IntegerBox, with 1 arguments πŸ” Trying unified registry for class: IntegerBox πŸ” DEBUG: resolve_variable: name='y', local_vars=[] πŸ” DEBUG: Checking GlobalBox for 'y'... πŸ” DEBUG: Found 'y' in GlobalBox πŸ” DEBUG: resolve_variable: name='me', local_vars=["me"]test interpreter::core::tests::test_if_statement ... ok πŸ” DEBUG: Found 'me' in local_vars βœ… RESOLVE_VARIABLE shared reference: me id=160 🏭 Unified registry created: IntegerBox πŸ” execute_assignment: value expression evaluated successfully βœ… FIELD ACCESS: Returning shared reference id=197 πŸ” execute_statement called with node type: "Assignment" πŸ” About to call execute_assignment... πŸ” execute_assignment called, evaluating value expression... πŸ” execute_new called for class: IntegerBox, with 1 arguments πŸ” Trying unified registry for class: IntegerBox πŸ” execute_assignment: value expression evaluated successfully 🏭 Unified registry created: IntegerBox πŸ” execute_assignment: value expression evaluated successfully πŸ” DEBUG: Statement 4 completed πŸ” execute_statement called with node type: "Assignment" πŸ” About to call execute_assignment... πŸ” execute_assignment called, evaluating value expression... πŸ” execute_new called for class: IntegerBox, with 1 arguments πŸ” Trying unified registry for class: IntegerBox πŸ” DEBUG: Interpreter execution completed 🏭 Unified registry created: IntegerBox πŸ” execute_assignment: value expression evaluated successfully πŸ” DEBUG: resolve_variable: name='obj', local_vars=[] πŸ” DEBUG: Checking GlobalBox for 'obj'... πŸ” DEBUG: Found 'obj' in GlobalBox πŸ” execute_statement called with node type: "Assignment" πŸ” About to call execute_assignment... πŸ” execute_assignment called, evaluating value expression... πŸ” DEBUG: resolve_variable: name='result', local_vars=[] πŸ” DEBUG: Checking GlobalBox for 'result'... πŸ” DEBUG: Found 'result' in GlobalBox πŸ” DEBUG: resolve_variable: name='a', local_vars=["me", "c", "a", "b", "result"]test interpreter::core::tests::test_box_instance_creation ... ok πŸ” DEBUG: Found ' a' in local_vars βœ… RESOLVE_VARIABLE shared reference: a id=215 πŸ” DEBUG: resolve_variable: name='b', local_vars=["me", "c", "a", "b", "result"] πŸ” DEBUG: Found 'b' in local_vars βœ… RESOLVE_VARIABLE shared reference: b id=221 πŸ” try_add_operation: left=IntegerBox, right=IntegerBox πŸ” After unwrap: left=IntegerBox, right=IntegerBox πŸ” Checking StringBox downcast... πŸ” StringBox downcast FAILED! ❌ Interpreter error: Invalid operation: Addition not supported between IntegerBox and IntegerBox πŸ” DEBUG: Interpreter execution completed 88 🏎️ VM: First run completed 88 88 πŸš€ Running benchmark: bench_medium πŸ” DEBUG: Starting interpreter execution... πŸ” DEBUG: execute_node called with node type: Program πŸ” DEBUG: Executing program with 1 statements πŸ” DEBUG: Executing statement 1 of 1: BoxDeclaration πŸ” execute_statement called with node type: "BoxDeclaration" 🌍 statics namespace created in GlobalBox successfully πŸ”₯ Static Box 'Main' definition registered in statics namespace πŸ” DEBUG: Statement 1 completed 🌍 statics namespace already exists - skipping creation πŸ”₯ Static box 'Main' instance registered in statics namespace πŸ” execute_statement called with node type: "MethodCall" πŸ” DEBUG: resolve_variable: name='statics', local_vars=[] πŸ” DEBUG: Checking GlobalBox for 'statics'... πŸ” DEBUG: Found 'statics' in GlobalBox βœ… FIELD ACCESS: Returning shared reference id=236 πŸ” execute_statement called with node type: "Local" πŸ” execute_statement called with node type: "Assignment" πŸ” About to call execute_assignment... πŸ” execute_assignment called, evaluating value expression... πŸ” execute_new called for class: IntegerBox, with 1 arguments πŸ” Trying unified registry for class: IntegerBox 🏭 Unified registry created: IntegerBox πŸ” execute_assignment: value expression evaluated successfully πŸ”— DEBUG: Variable 'sum' set to 0 - simulating object drop πŸ” DEBUG: resolve_variable: name='sum', local_vars=["sum", "i", "temp", "me"] πŸ” DEBUG: Found 'sum' in local_vars βœ… RESOLVE_VARIABLE shared reference: sum id=238 πŸ”— DEBUG: Old value being dropped: void πŸ” execute_statement called with node type: "Assignment" πŸ” About to call execute_assignment... πŸ” execute_assignment called, evaluating value expression... πŸ” execute_new called for class: IntegerBox, with 1 arguments πŸ” Trying unified registry for class: IntegerBox 🏭 Unified registry created: IntegerBox πŸ” execute_assignment: value expression evaluated successfully πŸ” execute_statement called with node type: "Assignment" πŸ” About to call execute_assignment... πŸ” execute_assignment called, evaluating value expression... πŸ” DEBUG: resolve_variable: name='i', local_vars=["sum", "i", "temp", "me"] πŸ” DEBUG: Found 'i' in local_vars βœ… RESOLVE_VARIABLE shared reference: i id=249 πŸ” execute_new called for class: IntegerBox, with 1 arguments πŸ” Trying unified registry for class: IntegerBox 🏭 Unified registry created: IntegerBox ❌ Interpreter error: Invalid operation: Multiplication not supported between IntegerBox and IntegerBox πŸ” DEBUG: Interpreter execution completed 140 🏎️ VM: First run completed 140 140 πŸš€ Running benchmark: bench_heavy πŸ” DEBUG: Starting interpreter execution... πŸ” DEBUG: execute_node called with node type: Program πŸ” DEBUG: Executing program with 1 statements πŸ” DEBUG: Executing statement 1 of 1: BoxDeclaration πŸ” execute_statement called with node type: "BoxDeclaration" 🌍 statics namespace created in GlobalBox successfully πŸ”₯ Static Box 'Main' definition registered in statics namespace πŸ” DEBUG: Statement 1 completed 🌍 statics namespace already exists - skipping creation πŸ”₯ Static box 'Main' instance registered in statics namespace πŸ” execute_statement called with node type: "MethodCall" πŸ” DEBUG: resolve_variable: name='statics', local_vars=[] πŸ” DEBUG: Checking GlobalBox for 'statics'... πŸ” DEBUG: Found 'statics' in GlobalBox βœ… FIELD ACCESS: Returning shared reference id=261 πŸ” execute_statement called with node type: "Local" πŸ” execute_statement called with node type: "Local" πŸ” execute_statement called with node type: "Assignment" πŸ” About to call execute_assignment... πŸ” execute_assignment called, evaluating value expression... πŸ” execute_new called for class: IntegerBox, with 1 arguments πŸ” Trying unified registry for class: IntegerBox 🏭 Unified registry created: IntegerBox πŸ” execute_assignment: value expression evaluated successfully πŸ” execute_statement called with node type: "Assignment" πŸ” About to call execute_assignment... πŸ” execute_assignment called, evaluating value expression... πŸ” execute_new called for class: IntegerBox, with 1 arguments πŸ” Trying unified registry for class: IntegerBox 🏭 Unified registry created: IntegerBox πŸ” execute_assignment: value expression evaluated successfully πŸ” execute_statement called with node type: "Assignment" πŸ” About to call execute_assignment... πŸ” execute_assignment called, evaluating value expression... πŸ” execute_new called for class: IntegerBox, with 1 arguments πŸ” Trying unified registry for class: IntegerBox 🏭 Unified registry created: IntegerBox πŸ” execute_assignment: value expression evaluated successfully πŸ” execute_statement called with node type: "Assignment" πŸ” About to call execute_assignment... πŸ” execute_assignment called, evaluating value expression... πŸ” execute_new called for class: IntegerBox, with 1 arguments πŸ” Trying unified registry for class: IntegerBox 🏭 Unified registry created: IntegerBox πŸ” execute_assignment: value expression evaluated successfully πŸ” execute_statement called with node type: "Assignment" πŸ” About to call execute_assignment... πŸ” execute_assignment called, evaluating value expression... πŸ” execute_new called for class: IntegerBox, with 1 arguments πŸ” Trying unified registry for class: IntegerBox 🏭 Unified registry created: IntegerBox πŸ” execute_assignment: value expression evaluated successfully πŸ” execute_statement called with node type: "Assignment" πŸ” About to call execute_assignment... πŸ” execute_assignment called, evaluating value expression... πŸ” execute_new called for class: IntegerBox, with 1 arguments πŸ” Trying unified registry for class: IntegerBox 🏭 Unified registry created: IntegerBox πŸ” execute_assignment: value expression evaluated successfully πŸ” execute_statement called with node type: "Assignment" πŸ” About to call execute_assignment... πŸ” execute_assignment called, evaluating value expression... πŸ” execute_new called for class: IntegerBox, with 1 arguments πŸ” Trying unified registry for class: IntegerBox 🏭 Unified registry created: IntegerBox πŸ” execute_assignment: value expression evaluated successfully πŸ” execute_statement called with node type: "Assignment" πŸ” About to call execute_assignment... πŸ” execute_assignment called, evaluating value expression... πŸ” execute_new called for class: IntegerBox, with 1 arguments πŸ” Trying unified registry for class: IntegerBox 🏭 Unified registry created: IntegerBox πŸ” execute_assignment: value expression evaluated successfully πŸ” execute_statement called with node type: "Assignment" πŸ” About to call execute_assignment... πŸ” execute_assignment called, evaluating value expression... πŸ” execute_new called for class: IntegerBox, with 1 arguments πŸ” Trying unified registry for class: IntegerBox 🏭 Unified registry created: IntegerBox πŸ” execute_assignment: value expression evaluated successfully πŸ” execute_statement called with node type: "Assignment" πŸ” About to call execute_assignment... πŸ” execute_assignment called, evaluating value expression... πŸ” execute_new called for class: IntegerBox, with 1 arguments πŸ” Trying unified registry for class: IntegerBox 🏭 Unified registry created: IntegerBox πŸ” execute_assignment: value expression evaluated successfully πŸ” execute_statement called with node type: "Assignment" πŸ” About to call execute_assignment... πŸ” execute_assignment called, evaluating value expression... πŸ” DEBUG: resolve_variable: name='a', local_vars=["me", "b", "d", "result1", "a", "e", "c", "result2", "g", "f", "result4", "result5", "j", "h", "i", "result3"] πŸ” DEBUG: Found 'a' in local_vars βœ… RESOLVE_VARIABLE shared reference: a id=282 πŸ” DEBUG: resolve_variable: name='b', local_vars=["me", "b", "d", "result1", "a", "e", "c", "result2", "g", "f", "result4", "result5", "j", "h", "i", "result3"] πŸ” DEBUG: Found 'b' in local_vars βœ… RESOLVE_VARIABLE shared reference: b id=286 ❌ Interpreter error: Invalid operation: Multiplication not supported between IntegerBox and IntegerBox πŸ” DEBUG: Interpreter execution completed 6301391 🏎️ VM: First run completed 6301391 6301391 πŸ“Š Nyash Performance Benchmark Results ===================================== Iterations per test: 3 🎯 bench_heavy Backend | Avg Time (ms) | Total Time (ms) | Speed Ratio --------------|---------------|-----------------|------------ VM | 0.694 | 2.1 | 1.00x 🎯 bench_medium Backend | Avg Time (ms) | Total Time (ms) | Speed Ratio --------------|---------------|-----------------|------------ VM | 0.605 | 1.8 | 1.00x 🎯 bench_light Backend | Avg Time (ms) | Total Time (ms) | Speed Ratio --------------|---------------|-----------------|------------ VM | 0.294 | 0.9 | 1.00x πŸ’‘ Performance Summary: πŸ“ˆ Average across all benchmarks: Interpreter: NaN ms VM: 0.53 ms (NaNx faster than interpreter) WASM: NaN ms (NaNx faster than interpreter) test benchmarks::tests::test_benchmark_light ... ok failures: failures: interpreter::core::tests::test_arithmetic test result: FAILED. 155 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.26s error: test failed, to rerun pass `--lib`