We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1110d4 commit 1adc908Copy full SHA for 1adc908
crates/interpreter/src/function_stack.rs
@@ -19,7 +19,7 @@ impl FunctionReturnFrame {
19
}
20
21
/// Function Stack
22
-#[derive(Debug, Default)]
+#[derive(Clone, Debug, Default, PartialEq, Eq)]
23
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
24
pub struct FunctionStack {
25
pub return_stack: Vec<FunctionReturnFrame>,
0 commit comments