Use compact_rc (#139)

There is not much use for weak_counts in Rc for us.

Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
This commit is contained in:
Anand Krishnamoorthi
2024-02-09 23:22:09 -08:00
committed by GitHub
parent 5044d54d18
commit a381c38a90
7 changed files with 10 additions and 10 deletions
+1 -2
View File
@@ -5,11 +5,10 @@ use crate::ast::{Expr, Ref};
use crate::builtins;
use crate::builtins::utils::{ensure_args_count, ensure_array, ensure_object};
use crate::lexer::Span;
use crate::value::Value;
use crate::value::{Rc, Value};
use std::collections::{BTreeMap, BTreeSet, HashMap};
use std::iter::Iterator;
use std::rc::Rc;
use anyhow::{bail, Result};