react-server-dom-turbopack 19.3.0-canary-d7215b49-20251013 → 19.3.0-canary-5f2b5718-20251014
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/cjs/react-server-dom-turbopack-client.browser.development.js +99 -58
- package/cjs/react-server-dom-turbopack-client.edge.development.js +97 -56
- package/cjs/react-server-dom-turbopack-client.node.development.js +97 -56
- package/cjs/react-server-dom-turbopack-server.browser.development.js +8 -4
- package/cjs/react-server-dom-turbopack-server.edge.development.js +8 -4
- package/cjs/react-server-dom-turbopack-server.node.development.js +82 -71
- package/package.json +3 -3
|
@@ -1307,6 +1307,7 @@
|
|
|
1307
1307
|
}
|
|
1308
1308
|
})
|
|
1309
1309
|
);
|
|
1310
|
+
performance.clearMeasures(entryName);
|
|
1310
1311
|
} else
|
|
1311
1312
|
console.timeStamp(
|
|
1312
1313
|
entryName,
|
|
@@ -1325,6 +1326,7 @@
|
|
|
1325
1326
|
var description = getIODescription(error),
|
|
1326
1327
|
entryName = getIOShortName(ioInfo, description, ioInfo.env, rootEnv),
|
|
1327
1328
|
debugTask = ioInfo.debugTask;
|
|
1329
|
+
entryName = "\u200b" + entryName;
|
|
1328
1330
|
debugTask
|
|
1329
1331
|
? ((error = [
|
|
1330
1332
|
[
|
|
@@ -1340,7 +1342,7 @@
|
|
|
1340
1342
|
getIOLongName(ioInfo, description, ioInfo.env, rootEnv) +
|
|
1341
1343
|
" Rejected"),
|
|
1342
1344
|
debugTask.run(
|
|
1343
|
-
performance.measure.bind(performance,
|
|
1345
|
+
performance.measure.bind(performance, entryName, {
|
|
1344
1346
|
start: 0 > startTime ? 0 : startTime,
|
|
1345
1347
|
end: endTime,
|
|
1346
1348
|
detail: {
|
|
@@ -1352,7 +1354,8 @@
|
|
|
1352
1354
|
}
|
|
1353
1355
|
}
|
|
1354
1356
|
})
|
|
1355
|
-
)
|
|
1357
|
+
),
|
|
1358
|
+
performance.clearMeasures(entryName))
|
|
1356
1359
|
: console.timeStamp(
|
|
1357
1360
|
entryName,
|
|
1358
1361
|
0 > startTime ? 0 : startTime,
|
|
@@ -1371,6 +1374,7 @@
|
|
|
1371
1374
|
entryName = getIOShortName(ioInfo, description, ioInfo.env, rootEnv),
|
|
1372
1375
|
color = getIOColor(entryName),
|
|
1373
1376
|
debugTask = ioInfo.debugTask;
|
|
1377
|
+
entryName = "\u200b" + entryName;
|
|
1374
1378
|
if (debugTask) {
|
|
1375
1379
|
var properties = [];
|
|
1376
1380
|
"object" === typeof value && null !== value
|
|
@@ -1379,7 +1383,7 @@
|
|
|
1379
1383
|
addValueToProperties("Resolved", value, properties, 0, "");
|
|
1380
1384
|
ioInfo = getIOLongName(ioInfo, description, ioInfo.env, rootEnv);
|
|
1381
1385
|
debugTask.run(
|
|
1382
|
-
performance.measure.bind(performance,
|
|
1386
|
+
performance.measure.bind(performance, entryName, {
|
|
1383
1387
|
start: 0 > startTime ? 0 : startTime,
|
|
1384
1388
|
end: endTime,
|
|
1385
1389
|
detail: {
|
|
@@ -1392,6 +1396,7 @@
|
|
|
1392
1396
|
}
|
|
1393
1397
|
})
|
|
1394
1398
|
);
|
|
1399
|
+
performance.clearMeasures(entryName);
|
|
1395
1400
|
} else
|
|
1396
1401
|
console.timeStamp(
|
|
1397
1402
|
entryName,
|
|
@@ -2024,7 +2029,12 @@
|
|
|
2024
2029
|
(fulfilledChunk.status = "fulfilled"),
|
|
2025
2030
|
(fulfilledChunk.value = handler.value),
|
|
2026
2031
|
(fulfilledChunk.reason = handler.reason),
|
|
2027
|
-
null !== key
|
|
2032
|
+
null !== key
|
|
2033
|
+
? wakeChunk(key, handler.value, fulfilledChunk)
|
|
2034
|
+
: moveDebugInfoFromChunkToInnerValue(
|
|
2035
|
+
fulfilledChunk,
|
|
2036
|
+
handler.value
|
|
2037
|
+
)));
|
|
2028
2038
|
}
|
|
2029
2039
|
function rejectReference(reference, error) {
|
|
2030
2040
|
var handler = reference.handler;
|
|
@@ -2174,8 +2184,12 @@
|
|
|
2174
2184
|
((boundArgs = resolvedValue.value),
|
|
2175
2185
|
(resolvedValue.status = "fulfilled"),
|
|
2176
2186
|
(resolvedValue.value = handler.value),
|
|
2177
|
-
null !== boundArgs
|
|
2178
|
-
wakeChunk(boundArgs, handler.value, resolvedValue)
|
|
2187
|
+
null !== boundArgs
|
|
2188
|
+
? wakeChunk(boundArgs, handler.value, resolvedValue)
|
|
2189
|
+
: moveDebugInfoFromChunkToInnerValue(
|
|
2190
|
+
resolvedValue,
|
|
2191
|
+
handler.value
|
|
2192
|
+
)));
|
|
2179
2193
|
},
|
|
2180
2194
|
function (error) {
|
|
2181
2195
|
if (!handler.errored) {
|
|
@@ -2640,6 +2654,9 @@
|
|
|
2640
2654
|
'Trying to call a function from "use server" but the callServer option was not implemented in your router runtime.'
|
|
2641
2655
|
);
|
|
2642
2656
|
}
|
|
2657
|
+
function markIOStarted() {
|
|
2658
|
+
this._debugIOStarted = !0;
|
|
2659
|
+
}
|
|
2643
2660
|
function ResponseInstance(
|
|
2644
2661
|
bundlerConfig,
|
|
2645
2662
|
serverReferenceConfig,
|
|
@@ -2683,6 +2700,8 @@
|
|
|
2683
2700
|
'"use ' + environmentName.toLowerCase() + '"'
|
|
2684
2701
|
));
|
|
2685
2702
|
this._debugStartTime = performance.now();
|
|
2703
|
+
this._debugIOStarted = !1;
|
|
2704
|
+
setTimeout(markIOStarted.bind(this), 0);
|
|
2686
2705
|
this._debugFindSourceMapURL = findSourceMapURL;
|
|
2687
2706
|
this._debugChannel = debugChannel;
|
|
2688
2707
|
this._blockedConsole = null;
|
|
@@ -2740,7 +2759,7 @@
|
|
|
2740
2759
|
(streamState._debugTargetChunkSize = chunkLength + MIN_CHUNK_SIZE))
|
|
2741
2760
|
: ((debugInfo.end = endTime), (debugInfo.byteSize = chunkLength));
|
|
2742
2761
|
}
|
|
2743
|
-
function
|
|
2762
|
+
function addAsyncInfo(chunk, asyncInfo) {
|
|
2744
2763
|
var value = resolveLazy(chunk.value);
|
|
2745
2764
|
"object" !== typeof value ||
|
|
2746
2765
|
null === value ||
|
|
@@ -2748,22 +2767,23 @@
|
|
|
2748
2767
|
"function" !== typeof value[ASYNC_ITERATOR] &&
|
|
2749
2768
|
value.$$typeof !== REACT_ELEMENT_TYPE &&
|
|
2750
2769
|
value.$$typeof !== REACT_LAZY_TYPE)
|
|
2751
|
-
? chunk._debugInfo.push
|
|
2770
|
+
? chunk._debugInfo.push(asyncInfo)
|
|
2752
2771
|
: isArrayImpl(value._debugInfo)
|
|
2753
|
-
? value._debugInfo.push
|
|
2772
|
+
? value._debugInfo.push(asyncInfo)
|
|
2754
2773
|
: Object.defineProperty(value, "_debugInfo", {
|
|
2755
2774
|
configurable: !1,
|
|
2756
2775
|
enumerable: !1,
|
|
2757
2776
|
writable: !0,
|
|
2758
|
-
value:
|
|
2777
|
+
value: [asyncInfo]
|
|
2759
2778
|
});
|
|
2760
2779
|
}
|
|
2761
|
-
function resolveChunkDebugInfo(streamState, chunk) {
|
|
2762
|
-
|
|
2763
|
-
|
|
2764
|
-
|
|
2765
|
-
|
|
2766
|
-
|
|
2780
|
+
function resolveChunkDebugInfo(response, streamState, chunk) {
|
|
2781
|
+
response._debugIOStarted &&
|
|
2782
|
+
((response = { awaited: streamState._debugInfo }),
|
|
2783
|
+
"pending" === chunk.status || "blocked" === chunk.status
|
|
2784
|
+
? ((response = addAsyncInfo.bind(null, chunk, response)),
|
|
2785
|
+
chunk.then(response, response))
|
|
2786
|
+
: addAsyncInfo(chunk, response));
|
|
2767
2787
|
}
|
|
2768
2788
|
function resolveBuffer(response, id, buffer, streamState) {
|
|
2769
2789
|
var chunks = response._chunks,
|
|
@@ -2771,9 +2791,9 @@
|
|
|
2771
2791
|
chunk && "pending" !== chunk.status
|
|
2772
2792
|
? chunk.reason.enqueueValue(buffer)
|
|
2773
2793
|
: (chunk && releasePendingChunk(response, chunk),
|
|
2774
|
-
(
|
|
2775
|
-
resolveChunkDebugInfo(streamState,
|
|
2776
|
-
chunks.set(id,
|
|
2794
|
+
(buffer = new ReactPromise("fulfilled", buffer, null)),
|
|
2795
|
+
resolveChunkDebugInfo(response, streamState, buffer),
|
|
2796
|
+
chunks.set(id, buffer));
|
|
2777
2797
|
}
|
|
2778
2798
|
function resolveModule(response, id, model, streamState) {
|
|
2779
2799
|
var chunks = response._chunks,
|
|
@@ -2791,7 +2811,7 @@
|
|
|
2791
2811
|
} else
|
|
2792
2812
|
(blockedChunk = new ReactPromise("blocked", null, null)),
|
|
2793
2813
|
chunks.set(id, blockedChunk);
|
|
2794
|
-
resolveChunkDebugInfo(streamState, blockedChunk);
|
|
2814
|
+
resolveChunkDebugInfo(response, streamState, blockedChunk);
|
|
2795
2815
|
model.then(
|
|
2796
2816
|
function () {
|
|
2797
2817
|
return resolveModuleChunk(response, blockedChunk, clientReference);
|
|
@@ -2802,14 +2822,14 @@
|
|
|
2802
2822
|
);
|
|
2803
2823
|
} else
|
|
2804
2824
|
chunk
|
|
2805
|
-
? (resolveChunkDebugInfo(streamState, chunk),
|
|
2825
|
+
? (resolveChunkDebugInfo(response, streamState, chunk),
|
|
2806
2826
|
resolveModuleChunk(response, chunk, clientReference))
|
|
2807
2827
|
: ((chunk = new ReactPromise(
|
|
2808
2828
|
"resolved_module",
|
|
2809
2829
|
clientReference,
|
|
2810
2830
|
null
|
|
2811
2831
|
)),
|
|
2812
|
-
resolveChunkDebugInfo(streamState, chunk),
|
|
2832
|
+
resolveChunkDebugInfo(response, streamState, chunk),
|
|
2813
2833
|
chunks.set(id, chunk));
|
|
2814
2834
|
}
|
|
2815
2835
|
function resolveStream(response, id, stream, controller, streamState) {
|
|
@@ -2817,7 +2837,7 @@
|
|
|
2817
2837
|
chunk = chunks.get(id);
|
|
2818
2838
|
if (chunk) {
|
|
2819
2839
|
if (
|
|
2820
|
-
(resolveChunkDebugInfo(streamState, chunk),
|
|
2840
|
+
(resolveChunkDebugInfo(response, streamState, chunk),
|
|
2821
2841
|
"pending" === chunk.status)
|
|
2822
2842
|
) {
|
|
2823
2843
|
releasePendingChunk(response, chunk);
|
|
@@ -2849,12 +2869,14 @@
|
|
|
2849
2869
|
chunk.status = "fulfilled";
|
|
2850
2870
|
chunk.value = stream;
|
|
2851
2871
|
chunk.reason = controller;
|
|
2852
|
-
null !== id
|
|
2872
|
+
null !== id
|
|
2873
|
+
? wakeChunk(id, chunk.value, chunk)
|
|
2874
|
+
: moveDebugInfoFromChunkToInnerValue(chunk, stream);
|
|
2853
2875
|
}
|
|
2854
2876
|
} else
|
|
2855
|
-
(
|
|
2856
|
-
resolveChunkDebugInfo(streamState,
|
|
2857
|
-
chunks.set(id,
|
|
2877
|
+
(stream = new ReactPromise("fulfilled", stream, controller)),
|
|
2878
|
+
resolveChunkDebugInfo(response, streamState, stream),
|
|
2879
|
+
chunks.set(id, stream);
|
|
2858
2880
|
}
|
|
2859
2881
|
function startReadableStream(response, id, type, streamState) {
|
|
2860
2882
|
var controller = null;
|
|
@@ -3522,8 +3544,19 @@
|
|
|
3522
3544
|
previousResult.track = trackIdx$jscomp$6;
|
|
3523
3545
|
return previousResult;
|
|
3524
3546
|
}
|
|
3525
|
-
var children = root._children
|
|
3526
|
-
|
|
3547
|
+
var children = root._children;
|
|
3548
|
+
var debugInfo = root._debugInfo;
|
|
3549
|
+
if (0 === debugInfo.length && "fulfilled" === root.status) {
|
|
3550
|
+
var resolvedValue = resolveLazy(root.value);
|
|
3551
|
+
"object" === typeof resolvedValue &&
|
|
3552
|
+
null !== resolvedValue &&
|
|
3553
|
+
(isArrayImpl(resolvedValue) ||
|
|
3554
|
+
"function" === typeof resolvedValue[ASYNC_ITERATOR] ||
|
|
3555
|
+
resolvedValue.$$typeof === REACT_ELEMENT_TYPE ||
|
|
3556
|
+
resolvedValue.$$typeof === REACT_LAZY_TYPE) &&
|
|
3557
|
+
isArrayImpl(resolvedValue._debugInfo) &&
|
|
3558
|
+
(debugInfo = resolvedValue._debugInfo);
|
|
3559
|
+
}
|
|
3527
3560
|
if (debugInfo) {
|
|
3528
3561
|
for (var startTime$jscomp$0 = 0, i = 0; i < debugInfo.length; i++) {
|
|
3529
3562
|
var info = debugInfo[i];
|
|
@@ -3615,6 +3648,7 @@
|
|
|
3615
3648
|
void 0 === env
|
|
3616
3649
|
? name
|
|
3617
3650
|
: name + " [" + env + "]",
|
|
3651
|
+
measureName = "\u200b" + entryName$jscomp$0,
|
|
3618
3652
|
properties = [
|
|
3619
3653
|
[
|
|
3620
3654
|
"Error",
|
|
@@ -3640,7 +3674,7 @@
|
|
|
3640
3674
|
0,
|
|
3641
3675
|
""
|
|
3642
3676
|
);
|
|
3643
|
-
performance.measure(
|
|
3677
|
+
performance.measure(measureName, {
|
|
3644
3678
|
start: 0 > startTime$jscomp$2 ? 0 : startTime$jscomp$2,
|
|
3645
3679
|
end: childrenEndTime$jscomp$1,
|
|
3646
3680
|
detail: {
|
|
@@ -3653,6 +3687,7 @@
|
|
|
3653
3687
|
}
|
|
3654
3688
|
}
|
|
3655
3689
|
});
|
|
3690
|
+
performance.clearMeasures(measureName);
|
|
3656
3691
|
}
|
|
3657
3692
|
} else {
|
|
3658
3693
|
var componentInfo$jscomp$3 = componentInfo$jscomp$1,
|
|
@@ -3684,11 +3719,12 @@
|
|
|
3684
3719
|
? "primary-dark"
|
|
3685
3720
|
: "secondary-dark"
|
|
3686
3721
|
: "error",
|
|
3687
|
-
|
|
3688
|
-
|
|
3722
|
+
debugTask$jscomp$0 = componentInfo$jscomp$3.debugTask,
|
|
3723
|
+
measureName$jscomp$0 =
|
|
3724
|
+
"\u200b" +
|
|
3725
|
+
(isPrimaryEnv || void 0 === env$jscomp$0
|
|
3689
3726
|
? name$jscomp$0
|
|
3690
|
-
: name$jscomp$0 + " [" + env$jscomp$0 + "]"
|
|
3691
|
-
debugTask$jscomp$0 = componentInfo$jscomp$3.debugTask;
|
|
3727
|
+
: name$jscomp$0 + " [" + env$jscomp$0 + "]");
|
|
3692
3728
|
if (debugTask$jscomp$0) {
|
|
3693
3729
|
var properties$jscomp$0 = [];
|
|
3694
3730
|
null != componentInfo$jscomp$3.key &&
|
|
@@ -3709,7 +3745,7 @@
|
|
|
3709
3745
|
debugTask$jscomp$0.run(
|
|
3710
3746
|
performance.measure.bind(
|
|
3711
3747
|
performance,
|
|
3712
|
-
|
|
3748
|
+
measureName$jscomp$0,
|
|
3713
3749
|
{
|
|
3714
3750
|
start:
|
|
3715
3751
|
0 > startTime$jscomp$3 ? 0 : startTime$jscomp$3,
|
|
@@ -3725,9 +3761,10 @@
|
|
|
3725
3761
|
}
|
|
3726
3762
|
)
|
|
3727
3763
|
);
|
|
3764
|
+
performance.clearMeasures(measureName$jscomp$0);
|
|
3728
3765
|
} else
|
|
3729
3766
|
console.timeStamp(
|
|
3730
|
-
|
|
3767
|
+
measureName$jscomp$0,
|
|
3731
3768
|
0 > startTime$jscomp$3 ? 0 : startTime$jscomp$3,
|
|
3732
3769
|
childrenEndTime$jscomp$2,
|
|
3733
3770
|
trackNames[trackIdx$jscomp$2],
|
|
@@ -3769,7 +3806,7 @@
|
|
|
3769
3806
|
error$jscomp$0 = thenable.reason;
|
|
3770
3807
|
if (supportsUserTiming && 0 < endTime$jscomp$0) {
|
|
3771
3808
|
var description = getIODescription(error$jscomp$0),
|
|
3772
|
-
entryName$jscomp$
|
|
3809
|
+
entryName$jscomp$1 =
|
|
3773
3810
|
"await " +
|
|
3774
3811
|
getIOShortName(
|
|
3775
3812
|
asyncInfo$jscomp$0.awaited,
|
|
@@ -3801,7 +3838,7 @@
|
|
|
3801
3838
|
debugTask$jscomp$1.run(
|
|
3802
3839
|
performance.measure.bind(
|
|
3803
3840
|
performance,
|
|
3804
|
-
entryName$jscomp$
|
|
3841
|
+
entryName$jscomp$1,
|
|
3805
3842
|
{
|
|
3806
3843
|
start:
|
|
3807
3844
|
0 > startTime$jscomp$4
|
|
@@ -3820,9 +3857,10 @@
|
|
|
3820
3857
|
}
|
|
3821
3858
|
)
|
|
3822
3859
|
);
|
|
3860
|
+
performance.clearMeasures(entryName$jscomp$1);
|
|
3823
3861
|
} else
|
|
3824
3862
|
console.timeStamp(
|
|
3825
|
-
entryName$jscomp$
|
|
3863
|
+
entryName$jscomp$1,
|
|
3826
3864
|
0 > startTime$jscomp$4 ? 0 : startTime$jscomp$4,
|
|
3827
3865
|
endTime$jscomp$0,
|
|
3828
3866
|
trackNames[trackIdx$jscomp$3],
|
|
@@ -3868,10 +3906,11 @@
|
|
|
3868
3906
|
if (supportsUserTiming) {
|
|
3869
3907
|
var env$jscomp$2 = componentInfo$jscomp$4.env,
|
|
3870
3908
|
name$jscomp$1 = componentInfo$jscomp$4.name,
|
|
3871
|
-
entryName$jscomp$
|
|
3909
|
+
entryName$jscomp$2 =
|
|
3872
3910
|
env$jscomp$2 === _env || void 0 === env$jscomp$2
|
|
3873
3911
|
? name$jscomp$1
|
|
3874
3912
|
: name$jscomp$1 + " [" + env$jscomp$2 + "]",
|
|
3913
|
+
measureName$jscomp$1 = "\u200b" + entryName$jscomp$2,
|
|
3875
3914
|
properties$jscomp$2 = [
|
|
3876
3915
|
[
|
|
3877
3916
|
"Aborted",
|
|
@@ -3893,7 +3932,7 @@
|
|
|
3893
3932
|
0,
|
|
3894
3933
|
""
|
|
3895
3934
|
);
|
|
3896
|
-
performance.measure(
|
|
3935
|
+
performance.measure(measureName$jscomp$1, {
|
|
3897
3936
|
start: 0 > startTime$jscomp$5 ? 0 : startTime$jscomp$5,
|
|
3898
3937
|
end: childrenEndTime$jscomp$3,
|
|
3899
3938
|
detail: {
|
|
@@ -3901,11 +3940,12 @@
|
|
|
3901
3940
|
color: "warning",
|
|
3902
3941
|
track: trackNames[trackIdx$jscomp$4],
|
|
3903
3942
|
trackGroup: "Server Components \u269b",
|
|
3904
|
-
tooltipText: entryName$jscomp$
|
|
3943
|
+
tooltipText: entryName$jscomp$2 + " Aborted",
|
|
3905
3944
|
properties: properties$jscomp$2
|
|
3906
3945
|
}
|
|
3907
3946
|
}
|
|
3908
3947
|
});
|
|
3948
|
+
performance.clearMeasures(measureName$jscomp$1);
|
|
3909
3949
|
}
|
|
3910
3950
|
componentEndTime = time;
|
|
3911
3951
|
result.component = _componentInfo;
|
|
@@ -3925,7 +3965,7 @@
|
|
|
3925
3965
|
endTime$jscomp$1 = endTime,
|
|
3926
3966
|
rootEnv$jscomp$0 = _env2;
|
|
3927
3967
|
if (supportsUserTiming && 0 < endTime$jscomp$1) {
|
|
3928
|
-
var entryName$jscomp$
|
|
3968
|
+
var entryName$jscomp$3 =
|
|
3929
3969
|
"await " +
|
|
3930
3970
|
getIOShortName(
|
|
3931
3971
|
asyncInfo$jscomp$1.awaited,
|
|
@@ -3947,7 +3987,7 @@
|
|
|
3947
3987
|
debugTask$jscomp$2.run(
|
|
3948
3988
|
performance.measure.bind(
|
|
3949
3989
|
performance,
|
|
3950
|
-
entryName$jscomp$
|
|
3990
|
+
entryName$jscomp$3,
|
|
3951
3991
|
{
|
|
3952
3992
|
start:
|
|
3953
3993
|
0 > startTime$jscomp$6 ? 0 : startTime$jscomp$6,
|
|
@@ -3969,9 +4009,10 @@
|
|
|
3969
4009
|
}
|
|
3970
4010
|
)
|
|
3971
4011
|
);
|
|
4012
|
+
performance.clearMeasures(entryName$jscomp$3);
|
|
3972
4013
|
} else
|
|
3973
4014
|
console.timeStamp(
|
|
3974
|
-
entryName$jscomp$
|
|
4015
|
+
entryName$jscomp$3,
|
|
3975
4016
|
0 > startTime$jscomp$6 ? 0 : startTime$jscomp$6,
|
|
3976
4017
|
endTime$jscomp$1,
|
|
3977
4018
|
trackNames[trackIdx$jscomp$5],
|
|
@@ -4217,20 +4258,20 @@
|
|
|
4217
4258
|
var error = resolveErrorDev(response, row);
|
|
4218
4259
|
error.digest = row.digest;
|
|
4219
4260
|
chunk
|
|
4220
|
-
? (resolveChunkDebugInfo(streamState, chunk),
|
|
4261
|
+
? (resolveChunkDebugInfo(response, streamState, chunk),
|
|
4221
4262
|
triggerErrorOnChunk(response, chunk, error))
|
|
4222
|
-
: ((
|
|
4223
|
-
resolveChunkDebugInfo(streamState,
|
|
4224
|
-
tag.set(id,
|
|
4263
|
+
: ((row = new ReactPromise("rejected", null, error)),
|
|
4264
|
+
resolveChunkDebugInfo(response, streamState, row),
|
|
4265
|
+
tag.set(id, row));
|
|
4225
4266
|
break;
|
|
4226
4267
|
case 84:
|
|
4227
4268
|
tag = response._chunks;
|
|
4228
4269
|
(chunk = tag.get(id)) && "pending" !== chunk.status
|
|
4229
4270
|
? chunk.reason.enqueueValue(row)
|
|
4230
4271
|
: (chunk && releasePendingChunk(response, chunk),
|
|
4231
|
-
(
|
|
4232
|
-
resolveChunkDebugInfo(streamState,
|
|
4233
|
-
tag.set(id,
|
|
4272
|
+
(row = new ReactPromise("fulfilled", row, null)),
|
|
4273
|
+
resolveChunkDebugInfo(response, streamState, row),
|
|
4274
|
+
tag.set(id, row));
|
|
4234
4275
|
break;
|
|
4235
4276
|
case 78:
|
|
4236
4277
|
response._timeOrigin = +row - performance.timeOrigin;
|
|
@@ -4296,11 +4337,11 @@
|
|
|
4296
4337
|
} else
|
|
4297
4338
|
(tag = response._chunks),
|
|
4298
4339
|
(chunk = tag.get(id))
|
|
4299
|
-
? (resolveChunkDebugInfo(streamState, chunk),
|
|
4340
|
+
? (resolveChunkDebugInfo(response, streamState, chunk),
|
|
4300
4341
|
resolveModelChunk(response, chunk, row))
|
|
4301
|
-
: ((
|
|
4302
|
-
resolveChunkDebugInfo(streamState,
|
|
4303
|
-
tag.set(id,
|
|
4342
|
+
: ((row = createResolvedModelChunk(response, row)),
|
|
4343
|
+
resolveChunkDebugInfo(response, streamState, row),
|
|
4344
|
+
tag.set(id, row));
|
|
4304
4345
|
}
|
|
4305
4346
|
}
|
|
4306
4347
|
function processBinaryChunk(weakResponse, streamState, chunk) {
|
|
@@ -4863,10 +4904,10 @@
|
|
|
4863
4904
|
return hook.checkDCE ? !0 : !1;
|
|
4864
4905
|
})({
|
|
4865
4906
|
bundleType: 1,
|
|
4866
|
-
version: "19.3.0-canary-
|
|
4907
|
+
version: "19.3.0-canary-5f2b5718-20251014",
|
|
4867
4908
|
rendererPackageName: "react-server-dom-turbopack",
|
|
4868
4909
|
currentDispatcherRef: ReactSharedInternals,
|
|
4869
|
-
reconcilerVersion: "19.3.0-canary-
|
|
4910
|
+
reconcilerVersion: "19.3.0-canary-5f2b5718-20251014",
|
|
4870
4911
|
getCurrentComponentInfo: function () {
|
|
4871
4912
|
return currentOwnerInDEV;
|
|
4872
4913
|
}
|