From 02d35e4aa6ef84cdbd01d881bdc5c1acd50fc7dc Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Tue, 10 Jan 2023 14:52:59 +0300 Subject: feat(tvix/eval): implement builtins.toJSON Implements `Serialize` for `tvix_eval::Value`. Special care is taken with serialisation of attribute sets, and forcing of thunks. The tests should cover both cases well. Change-Id: I9bb135bacf6f87bc6bd0bd88cef0a42308e6c335 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7803 Reviewed-by: flokli Tested-by: BuildkiteCI Autosubmit: tazjin --- tvix/eval/src/value/thunk.rs | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'tvix/eval/src/value/thunk.rs') diff --git a/tvix/eval/src/value/thunk.rs b/tvix/eval/src/value/thunk.rs index 8813b0039888..a820e73307ad 100644 --- a/tvix/eval/src/value/thunk.rs +++ b/tvix/eval/src/value/thunk.rs @@ -24,6 +24,8 @@ use std::{ rc::Rc, }; +use serde::Serialize; + use crate::{ chunk::Chunk, errors::{Error, ErrorKind}, @@ -329,6 +331,15 @@ impl TotalDisplay for Thunk { } } +impl Serialize for Thunk { + fn serialize(&self, serializer: S) -> Result + where + S: serde::Serializer, + { + self.value().serialize(serializer) + } +} + /// A wrapper type for tracking which thunks have already been seen in a /// context. This is necessary for cycle detection. /// -- cgit 1.4.1