From aceb44fa5153a33eb8013be41f1c455ca424f92d Mon Sep 17 00:00:00 2001 From: Jesse Morgan Date: Sun, 31 Dec 2023 15:15:03 -0800 Subject: Implement Invoke, Yield, and Return ops Javascript functions can now return values. --- src/ion.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ion.rs') diff --git a/src/ion.rs b/src/ion.rs index cbfae24..65f5d23 100644 --- a/src/ion.rs +++ b/src/ion.rs @@ -18,7 +18,7 @@ pub enum IonType { Annotations = 0x0e, } -#[derive(PartialOrd, PartialEq)] +#[derive(PartialOrd, PartialEq, Clone)] pub struct IonValue(Vec); impl IonValue { -- cgit v1.2.3