From 930417dedcd8e95bc8535603e57e4a8d7de1cd8b Mon Sep 17 00:00:00 2001 From: Maxim Evtush <154841002+maximevtush@users.noreply.github.com> Date: Tue, 18 Feb 2025 11:11:51 +0100 Subject: [PATCH 1/3] Update execute.rs --- constraint_generation/src/execute.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/constraint_generation/src/execute.rs b/constraint_generation/src/execute.rs index 5fa58a1aa..d25aa0230 100644 --- a/constraint_generation/src/execute.rs +++ b/constraint_generation/src/execute.rs @@ -1327,7 +1327,7 @@ fn execute_bus_declaration( } /* - In case the assigment could be a constraint generator the returned value is the constraint + In case the assignment could be a constraint generator the returned value is the constraint that will be created */ enum ExecutedStructure<'a>{ @@ -1939,7 +1939,7 @@ fn perform_assign( } if FoldedValue::valid_bus_node_pointer(&r_folded){ - // in this case we are performing an assigment of the type in the node_pointer + // in this case we are performing an assignment of the type in the node_pointer // to the bus in the left let bus_pointer = r_folded.bus_node_pointer.unwrap(); From fc87128f7b215a52f766955e3f81764cefdd388d Mon Sep 17 00:00:00 2001 From: Maxim Evtush <154841002+maximevtush@users.noreply.github.com> Date: Tue, 18 Feb 2025 11:13:19 +0100 Subject: [PATCH 2/3] Update wasm_code_generator.rs --- .../src/wasm_elements/wasm_code_generator.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/code_producers/src/wasm_elements/wasm_code_generator.rs b/code_producers/src/wasm_elements/wasm_code_generator.rs index ce6f55428..528f68541 100644 --- a/code_producers/src/wasm_elements/wasm_code_generator.rs +++ b/code_producers/src/wasm_elements/wasm_code_generator.rs @@ -220,15 +220,15 @@ pub fn default_memory_for_stack_kib() -> usize { 10 } -pub fn exception_code_singal_not_found() -> usize { +pub fn exception_code_signal_not_found() -> usize { 1 } -pub fn exception_code_no_remaing_singals_to_set() -> usize { +pub fn exception_code_no_remaing_signals_to_set() -> usize { 2 } -pub fn exception_code_singals_already_set() -> usize { +pub fn exception_code_signals_already_set() -> usize { 3 } @@ -1097,7 +1097,7 @@ pub fn set_input_signal_generator(producer: &WASMProducer) -> Vec Vec Vec Date: Wed, 11 Jun 2025 08:28:01 +0200 Subject: [PATCH 3/3] Update wasm_code_generator.rs --- code_producers/src/wasm_elements/wasm_code_generator.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code_producers/src/wasm_elements/wasm_code_generator.rs b/code_producers/src/wasm_elements/wasm_code_generator.rs index 528f68541..06590c4ee 100644 --- a/code_producers/src/wasm_elements/wasm_code_generator.rs +++ b/code_producers/src/wasm_elements/wasm_code_generator.rs @@ -224,7 +224,7 @@ pub fn exception_code_signal_not_found() -> usize { 1 } -pub fn exception_code_no_remaing_signals_to_set() -> usize { +pub fn exception_code_no_remaining_signals_to_set() -> usize { 2 } @@ -1097,7 +1097,7 @@ pub fn set_input_signal_generator(producer: &WASMProducer) -> Vec