mirror of https://github.com/sveltejs/svelte
handle member expressions in destructuring assignments - fixes #3092
parent
21987c4e57
commit
09eb8330a3
@ -0,0 +1,23 @@
|
|||||||
|
export default {
|
||||||
|
html: `
|
||||||
|
<ul>
|
||||||
|
<li>Gruyere</li>
|
||||||
|
<li>Compté</li>
|
||||||
|
<li>Beaufort</li>
|
||||||
|
<li>Abondance</li>
|
||||||
|
</ul>
|
||||||
|
`,
|
||||||
|
|
||||||
|
async test({ assert, component, target }) {
|
||||||
|
await component.swap(0, 1);
|
||||||
|
|
||||||
|
assert.htmlEqual(target.innerHTML, `
|
||||||
|
<ul>
|
||||||
|
<li>Compté</li>
|
||||||
|
<li>Gruyere</li>
|
||||||
|
<li>Beaufort</li>
|
||||||
|
<li>Abondance</li>
|
||||||
|
</ul>
|
||||||
|
`);
|
||||||
|
}
|
||||||
|
};
|
@ -0,0 +1,18 @@
|
|||||||
|
<script>
|
||||||
|
let cheese = [
|
||||||
|
'Gruyere',
|
||||||
|
'Compté',
|
||||||
|
'Beaufort',
|
||||||
|
'Abondance',
|
||||||
|
];
|
||||||
|
|
||||||
|
export function swap(a, b) {
|
||||||
|
[cheese[a], cheese[b]] = [cheese[b], cheese[a]];
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
{#each cheese as cheese}
|
||||||
|
<li>{cheese}</li>
|
||||||
|
{/each}
|
||||||
|
</ul>
|
Loading…
Reference in new issue