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/js/samples/declaration-assignment-emer.../expected.js

73 lines
1.1 KiB

/* generated by Svelte vX.Y.Z */
import {
SvelteComponent,
append,
detach,
element,
init,
insert,
noop,
safe_not_equal,
set_data,
space,
text
} from "svelte/internal";
function create_fragment(ctx) {
var h1, t0, t1, t2;
return {
c() {
h1 = element("h1");
t0 = text(ctx.foo);
t1 = space();
t2 = text(ctx.eid);
},
m(target, anchor) {
insert(target, h1, anchor);
append(h1, t0);
append(h1, t1);
append(h1, t2);
},
p(changed, ctx) {
if (changed.foo) {
set_data(t0, ctx.foo);
}
if (changed.eid) {
set_data(t2, ctx.eid);
}
},
i: noop,
o: noop,
d(detaching) {
if (detaching) {
detach(h1);
}
}
};
}
function instance($$self, $$props, $$invalidate) {
let eid = 1;
let foo;
let employees = [
{id: eid = (foo = 2), name: 'xxx'},
]; $$invalidate('foo', foo); $$invalidate('eid', eid);
return { eid, foo };
}
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, []);
}
}
export default Component;