Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions nova_vm/src/ecmascript/builtins/set/data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ use soavec_derive::SoAble;

#[derive(Debug, Default, SoAble)]
pub struct SetHeapData<'a> {
pub(crate) object_index: Option<OrdinaryObject<'a>>,
pub(crate) set_data: RefCell<HashTable<u32>>,
pub(crate) values: Vec<Option<Value<'a>>>,
pub(crate) object_index: Option<OrdinaryObject<'a>>,
/// Low-level hash table pointing to value indexes.
pub(crate) set_data: RefCell<HashTable<u32>>,
/// Flag that lets the Set know if it needs to rehash its primitive keys.
///
/// This happens when an object key needs to be moved in the set_data
Expand Down
Loading