@makeswift/runtime 0.0.0-af7286d → 0.0.0-e0c0445

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -688,9 +688,9 @@ function nextHash() {
688
688
  var usingWeakMap = typeof WeakMap === "function";
689
689
  var weakMap;
690
690
  if (usingWeakMap) {
691
- weakMap = /* @__PURE__ */ new WeakMap();
691
+ weakMap = new WeakMap();
692
692
  }
693
- var symbolMap = /* @__PURE__ */ Object.create(null);
693
+ var symbolMap = Object.create(null);
694
694
  var _objHashUID = 0;
695
695
  var UID_HASH_KEY = "__immutablehash__";
696
696
  if (typeof Symbol === "function") {
@@ -4168,7 +4168,7 @@ function measureElements() {
4168
4168
  const boxModel = boxModels.measure(measurable);
4169
4169
  return boxModel ? [elementKey, boxModel] : null;
4170
4170
  }).filter((entry) => entry != null));
4171
- const changedBoxModels = /* @__PURE__ */ new Map();
4171
+ const changedBoxModels = new Map();
4172
4172
  currentBoxModels.forEach((_boxModel, elementKey) => {
4173
4173
  if (!measuredBoxModels.has(elementKey))
4174
4174
  changedBoxModels.set(elementKey, null);