Skip to content

Commit f57ec19

Browse files
authored
doh
1 parent 76b47d7 commit f57ec19

File tree

1 file changed

+1
-1
lines changed
  • packages/svelte/src/compiler/phases/3-transform/client

1 file changed

+1
-1
lines changed

packages/svelte/src/compiler/phases/3-transform/client/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export function can_be_parallelized(expression, scope, analysis) {
4040
let should_stop = false;
4141
/** @type {Set<string>} */
4242
const references = new Set();
43-
walk(expression, null, {
43+
walk(/** @type {Node} */ (expression), null, {
4444
ArrowFunctionExpression(_, { stop }) {
4545
has_closures = true;
4646
stop();

0 commit comments

Comments
 (0)