parallelize-async-work
ComputerGuy 6 days ago
parent c0723add39
commit aeff5f3062

@ -84,7 +84,11 @@ const visitors = {
} else {
next();
}
if (node.type !== 'VariableDeclaration' && path.at(-1)?.type === 'Program' && state.analysis.instance) {
if (
node.type !== 'VariableDeclaration' &&
path.at(-1)?.type === 'Program' &&
state.analysis.instance
) {
state.current_parallelized_chunk = null;
}
},

Loading…
Cancel
Save