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 a1ef682 commit f38fb34Copy full SHA for f38fb34
nova_vm/src/ecmascript/builtins/set/data.rs
@@ -21,10 +21,10 @@ use soavec_derive::SoAble;
21
22
#[derive(Debug, Default, SoAble)]
23
pub struct SetHeapData<'a> {
24
- pub(crate) object_index: Option<OrdinaryObject<'a>>,
+ pub(crate) set_data: RefCell<HashTable<u32>>,
25
pub(crate) values: Vec<Option<Value<'a>>>,
26
+ pub(crate) object_index: Option<OrdinaryObject<'a>>,
27
/// Low-level hash table pointing to value indexes.
- pub(crate) set_data: RefCell<HashTable<u32>>,
28
/// Flag that lets the Set know if it needs to rehash its primitive keys.
29
///
30
/// This happens when an object key needs to be moved in the set_data
0 commit comments