/* generated by Svelte vX.Y.Z */ import { SvelteComponent, create_component, destroy_component, detach, element, init, insert, listen, mount_component, safe_not_equal, set_input_value, space, transition_in, transition_out } from "svelte/internal"; import Foo from './Foo.svelte'; import Bar from './Bar.svelte'; function create_fragment(ctx) { let foo; let t0; let bar; let t1; let input; let current; let mounted; let dispose; foo = new Foo({ props: { x: y } }); bar = new Bar({ props: { x: /*z*/ ctx[0] } }); return { c() { create_component(foo.$$.fragment); t0 = space(); create_component(bar.$$.fragment); t1 = space(); input = element("input"); }, m(target, anchor) { mount_component(foo, target, anchor); insert(target, t0, anchor); mount_component(bar, target, anchor); insert(target, t1, anchor); insert(target, input, anchor); set_input_value(input, /*z*/ ctx[0]); current = true; if (!mounted) { dispose = listen(input, "input", /*input_input_handler*/ ctx[1]); mounted = true; } }, p(ctx, [dirty]) { const bar_changes = {}; if (dirty & /*z*/ 1) bar_changes.x = /*z*/ ctx[0]; bar.$set(bar_changes); if (dirty & /*z*/ 1 && input.value !== /*z*/ ctx[0]) { set_input_value(input, /*z*/ ctx[0]); } }, i(local) { if (current) return; transition_in(foo.$$.fragment, local); transition_in(bar.$$.fragment, local); current = true; }, o(local) { transition_out(foo.$$.fragment, local); transition_out(bar.$$.fragment, local); current = false; }, d(detaching) { destroy_component(foo, detaching); if (detaching) detach(t0); destroy_component(bar, detaching); if (detaching) detach(t1); if (detaching) detach(input); mounted = false; dispose(); } }; } let y = 1; function instance($$self, $$props, $$invalidate) { let z = 2; function input_input_handler() { z = this.value; $$invalidate(0, z); } return [z, input_input_handler]; } class Component extends SvelteComponent { constructor(options) { super(); init(this, options, instance, create_fragment, safe_not_equal, {}); } } export default Component;