prevent overwriting export consts - fixes

pull/2245/head
Richard Harris 6 years ago
parent 8620b1f62a
commit 2ba37882a8

@ -792,7 +792,7 @@ export default class Component {
current_group = { kind: node.kind, declarators: [declarator], insert }; current_group = { kind: node.kind, declarators: [declarator], insert };
coalesced_declarations.push(current_group); coalesced_declarations.push(current_group);
} else if (insert) { } else if (insert) {
current_group.insert = insert current_group.insert = insert;
current_group.declarators.push(declarator); current_group.declarators.push(declarator);
} else { } else {
current_group.declarators.push(declarator); current_group.declarators.push(declarator);
@ -841,8 +841,9 @@ export default class Component {
}); });
coalesced_declarations.forEach(group => { coalesced_declarations.forEach(group => {
let c = 0; const writable = group.kind === 'var' || group.kind === 'let';
let c = 0;
let combining = false; let combining = false;
group.declarators.forEach(declarator => { group.declarators.forEach(declarator => {
@ -851,7 +852,7 @@ export default class Component {
if (combining) { if (combining) {
code.overwrite(c, id.start, ', '); code.overwrite(c, id.start, ', ');
} else { } else {
code.appendLeft(id.start, '{ '); if (writable) code.appendLeft(id.start, '{ ');
combining = true; combining = true;
} }
@ -863,7 +864,7 @@ export default class Component {
? `; ${group.insert}` ? `; ${group.insert}`
: ''; : '';
const suffix = code.original[c] === ';' ? ` } = $$props${insert}` : ` } = $$props${insert};`; const suffix = `${writable ? ` } = $$props` : ``}${insert}` + (code.original[c] === ';' ? `` : `;`);
code.appendLeft(c, suffix); code.appendLeft(c, suffix);
} }
}); });

@ -0,0 +1,7 @@
<script>
export let a;
export const b = 2;
</script>
<p>a: {a}</p>
<p>b: {b}</p>

@ -0,0 +1,23 @@
export default {
props: {
a: 3,
b: 4
},
html: `
<p>a: 3</p>
<p>b: 2</p>
`,
async test({ assert, component, target }) {
await component.$set({
a: 5,
b: 6
});
assert.htmlEqual(target.innerHTML, `
<p>a: 5</p>
<p>b: 2</p>
`);
}
};

@ -0,0 +1,8 @@
<script>
import Nested from './Nested.svelte';
export let a;
export let b;
</script>
<Nested a={a} b={b}/>
Loading…
Cancel
Save