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 c0723ad commit aeff5f3Copy full SHA for aeff5f3
packages/svelte/src/compiler/phases/3-transform/client/transform-client.js
@@ -84,7 +84,11 @@ const visitors = {
84
} else {
85
next();
86
}
87
- if (node.type !== 'VariableDeclaration' && path.at(-1)?.type === 'Program' && state.analysis.instance) {
+ if (
88
+ node.type !== 'VariableDeclaration' &&
89
+ path.at(-1)?.type === 'Program' &&
90
+ state.analysis.instance
91
+ ) {
92
state.current_parallelized_chunk = null;
93
94
},
0 commit comments