0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-12-01 17:30:59 +01:00

usedAsAnchor is not used

This commit is contained in:
Rich Harris 2017-08-29 22:04:45 -04:00
parent 60ff6d8a7c
commit 5c88b6c864
2 changed files with 0 additions and 4 deletions

View File

@ -60,8 +60,6 @@ export default function visitEachBlock(
`@createComment()`,
state.parentNode
);
} else if (node.next) {
node.next.usedAsAnchor = true;
}
if (node.else) {

View File

@ -124,8 +124,6 @@ export default function visitIfBlock(
`@createComment()`,
state.parentNode
);
} else if (node.next) {
node.next.usedAsAnchor = true;
}
}