Skip to content

Commit 1adc908

Browse files
authored
feat(interpreter): derive traits on FunctionStack (#1640)
1 parent c1110d4 commit 1adc908

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/interpreter/src/function_stack.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ impl FunctionReturnFrame {
1919
}
2020

2121
/// Function Stack
22-
#[derive(Debug, Default)]
22+
#[derive(Clone, Debug, Default, PartialEq, Eq)]
2323
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
2424
pub struct FunctionStack {
2525
pub return_stack: Vec<FunctionReturnFrame>,

0 commit comments

Comments
 (0)