reactronic 0.96.26018 → 0.96.26020
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.
|
@@ -2,7 +2,7 @@ export var Mode;
|
|
|
2
2
|
(function (Mode) {
|
|
3
3
|
Mode[Mode["default"] = 0] = "default";
|
|
4
4
|
Mode[Mode["primitive"] = 1] = "primitive";
|
|
5
|
-
Mode[Mode["
|
|
5
|
+
Mode[Mode["fragment"] = 2] = "fragment";
|
|
6
6
|
Mode[Mode["external"] = 4] = "external";
|
|
7
7
|
})(Mode || (Mode = {}));
|
|
8
8
|
export var Priority;
|
|
@@ -387,8 +387,6 @@ class OperationFootprintImpl extends ContentFootprint {
|
|
|
387
387
|
static proceed(footprint, proxy) {
|
|
388
388
|
footprint.enter();
|
|
389
389
|
try {
|
|
390
|
-
if (footprint.options.getter === undefined)
|
|
391
|
-
console.log("(!)");
|
|
392
390
|
footprint.result = footprint.options.getter.call(proxy, ...footprint.args);
|
|
393
391
|
}
|
|
394
392
|
finally {
|
|
@@ -434,7 +434,7 @@ function launchNestedNodesThenDoImpl(node, error, action) {
|
|
|
434
434
|
function markToMountIfNecessary(mounting, host, node, children, sequential) {
|
|
435
435
|
if (node.declaration.unmounted)
|
|
436
436
|
host = node;
|
|
437
|
-
if (!node.hasAny(Mode.
|
|
437
|
+
if (!node.hasAny(Mode.fragment | Mode.external)) {
|
|
438
438
|
if (mounting || node.host !== host) {
|
|
439
439
|
LinkedItem.setStatus$(node, Mark.moved, node.rank);
|
|
440
440
|
mounting = false;
|