Skip to content

Commit da63e25

Browse files
committed
snake case
1 parent 3cf1f18 commit da63e25

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -346,8 +346,8 @@ function collect_transitive_dependencies(binding, seen = new Set()) {
346346
/** @param {AST.Text | AST.Tag | AST.ElementLike | AST.Comment | AST.Block} child */
347347
function is_animate_directive(child) {
348348
if (child.type === 'RenderTag') {
349-
for (const snippetBlock of child.metadata.snippets) {
350-
return snippetBlock.body.nodes.some(is_animate_directive);
349+
for (const snippet_block of child.metadata.snippets) {
350+
return snippet_block.body.nodes.some(is_animate_directive);
351351
}
352352
}
353353
if (child.type !== 'RegularElement' && child.type !== 'SvelteElement') return false;

0 commit comments

Comments
 (0)