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/reactive-values-non-topolog.../expected.js

33 lines
632 B

/* generated by Svelte vX.Y.Z */
import { SvelteComponent, init, safe_not_equal } from "svelte/internal";
function instance($$self, $$props, $$invalidate) {
let { x } = $$props;
let a;
let b;
$$self.$$set = $$props => {
if ('x' in $$props) $$invalidate(0, x = $$props.x);
};
$$self.$$.update = () => {
if ($$self.$$.dirty & /*x*/ 1) {
$: $$invalidate(1, b = x);
}
if ($$self.$$.dirty & /*b*/ 2) {
$: a = b;
}
};
return [x, b];
}
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, null, safe_not_equal, { x: 0 });
}
}
export default Component;