mirror of https://github.com/sveltejs/svelte
43 lines
647 B
43 lines
647 B
/* generated by Svelte vX.Y.Z */
|
|
import {
|
|
SvelteComponent,
|
|
init,
|
|
noop,
|
|
safe_not_equal
|
|
} from "svelte/internal";
|
|
|
|
function create_fragment(ctx) {
|
|
return {
|
|
c: noop,
|
|
m: noop,
|
|
p: noop,
|
|
i: noop,
|
|
o: noop,
|
|
d: noop
|
|
};
|
|
}
|
|
|
|
let a = 1;
|
|
|
|
let b = 2;
|
|
|
|
function instance($$self, $$props, $$invalidate) {
|
|
|
|
|
|
let max;
|
|
|
|
$$self.$$.update = ($$dirty = { a: 1, b: 1 }) => {
|
|
if ($$dirty.a || $$dirty.b) { $$invalidate('max', max = Math.max(a, b)); }
|
|
};
|
|
|
|
return {};
|
|
}
|
|
|
|
class Component extends SvelteComponent {
|
|
constructor(options) {
|
|
super();
|
|
init(this, options, instance, create_fragment, safe_not_equal, []);
|
|
}
|
|
}
|
|
|
|
export default Component; |