mirror of https://github.com/sveltejs/svelte
[fix] fix crash when using arrow functions in {@const} (#7144)
parent
5ccfc3c5d7
commit
00e394e3c8
@ -0,0 +1,47 @@
|
|||||||
|
export default {
|
||||||
|
html: `
|
||||||
|
<p>#FF0000</p>
|
||||||
|
<p>#00FF00</p>
|
||||||
|
<p>#0000FF</p>
|
||||||
|
`,
|
||||||
|
async test({ component, target, assert }) {
|
||||||
|
component.constant = 20;
|
||||||
|
|
||||||
|
assert.htmlEqual(target.innerHTML, `
|
||||||
|
<p>#FF0000</p>
|
||||||
|
<p>#00FF00</p>
|
||||||
|
<p>#0000FF</p>
|
||||||
|
`);
|
||||||
|
|
||||||
|
component.tags = [
|
||||||
|
{
|
||||||
|
name: 'Red',
|
||||||
|
color: '#FF0000'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Green',
|
||||||
|
color: '#00FF00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Blue',
|
||||||
|
color: '#0000FF'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Black',
|
||||||
|
color: '#000000'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'White',
|
||||||
|
color: '#FFFFFF'
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
assert.htmlEqual(target.innerHTML, `
|
||||||
|
<p>#FF0000</p>
|
||||||
|
<p>#00FF00</p>
|
||||||
|
<p>#0000FF</p>
|
||||||
|
<p>#000000</p>
|
||||||
|
<p>#FFFFFF</p>
|
||||||
|
`);
|
||||||
|
}
|
||||||
|
};
|
@ -0,0 +1,21 @@
|
|||||||
|
<script>
|
||||||
|
export let tags = [
|
||||||
|
{
|
||||||
|
name: 'Red',
|
||||||
|
color: '#FF0000'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Green',
|
||||||
|
color: '#00FF00'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Blue',
|
||||||
|
color: '#0000FF'
|
||||||
|
}
|
||||||
|
];
|
||||||
|
</script>
|
||||||
|
|
||||||
|
{#each tags as tag}
|
||||||
|
{@const tagColor = tags.find(t => t.name === tag.name).color}
|
||||||
|
<p>{tagColor}</p>
|
||||||
|
{/each}
|
Loading…
Reference in new issue