You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/runtime/samples/export-from/A.svelte

23 lines
427 B

<script context="module">
export { a, b } from './B.svelte';
export { c as d } from './B.svelte';
</script>
<script>
export { d, e } from './B.svelte';
export { f as g } from './B.svelte';
let e = 123;
let b = 234;
function foo() {
e = 456;
b = 567;
}
</script>
a: {typeof a}<br />
b: {typeof b}<br />
c: {typeof c}<br />
d: {typeof d}<br />
e: {typeof e}<br />
f: {typeof f}<br />
g: {typeof g}<br />