Skip to content

Commit

Permalink
feat(interpreter): derive traits on FunctionStack (#1640)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes authored Jul 18, 2024
1 parent c1110d4 commit 1adc908
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/interpreter/src/function_stack.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ impl FunctionReturnFrame {
}

/// Function Stack
#[derive(Debug, Default)]
#[derive(Clone, Debug, Default, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct FunctionStack {
pub return_stack: Vec<FunctionReturnFrame>,
Expand Down

0 comments on commit 1adc908

Please sign in to comment.