marko 6.0.93 → 6.0.94
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.
- package/dist/translator/index.js +6 -4
- package/package.json +1 -1
package/dist/translator/index.js
CHANGED
|
@@ -8412,10 +8412,12 @@ function finalizeReferences() {
|
|
|
8412
8412
|
intersectionsBySection
|
|
8413
8413
|
);
|
|
8414
8414
|
if (registerReason) {
|
|
8415
|
-
forEach(
|
|
8416
|
-
|
|
8417
|
-
|
|
8418
|
-
|
|
8415
|
+
forEach(fn.referencedBindingsInFunction, (binding) => {
|
|
8416
|
+
addSerializeReason(binding.section, registerReason, binding);
|
|
8417
|
+
if (binding.section !== fn.section) {
|
|
8418
|
+
addOwnerSerializeReason(fn.section, binding.section, registerReason);
|
|
8419
|
+
}
|
|
8420
|
+
});
|
|
8419
8421
|
}
|
|
8420
8422
|
}
|
|
8421
8423
|
forEachSectionReverse((section) => {
|