pull/1925/head
Richard Harris 6 years ago
parent 436fffb6bb
commit 468b5dc0c4

@ -50,7 +50,7 @@ function instance($$self, $$props, $$invalidate) {
return handleFoo(bar);
}
$$self.$$.set = $$props => {
$$self.$set = $$props => {
if ('bar' in $$props) $$invalidate('bar', bar = $$props.bar);
};

@ -46,7 +46,7 @@ function instance($$self, $$props, $$invalidate) {
$$invalidate('h', h);
}
$$self.$$.set = $$props => {
$$self.$set = $$props => {
if ('w' in $$props) $$invalidate('w', w = $$props.w);
if ('h' in $$props) $$invalidate('h', h = $$props.h);
};

@ -48,7 +48,7 @@ function create_fragment(component, ctx) {
function instance($$self, $$props, $$invalidate) {
let { foo = 42 } = $$props;
$$self.$$.set = $$props => {
$$self.$set = $$props => {
if ('foo' in $$props) $$invalidate('foo', foo = $$props.foo);
};

@ -25,7 +25,7 @@ function instance($$self, $$props, $$invalidate) {
return x * 3;
}
$$self.$$.set = $$props => {
$$self.$set = $$props => {
if ('x' in $$props) $$invalidate('x', x = $$props.x);
};

@ -57,7 +57,7 @@ function create_fragment(component, ctx) {
function instance($$self, $$props, $$invalidate) {
let { name } = $$props;
$$self.$$.set = $$props => {
$$self.$set = $$props => {
if ('name' in $$props) $$invalidate('name', name = $$props.name);
};

@ -142,7 +142,7 @@ function create_fragment(component, ctx) {
function instance($$self, $$props, $$invalidate) {
let { things, foo, bar, baz } = $$props;
$$self.$$.set = $$props => {
$$self.$set = $$props => {
if ('things' in $$props) $$invalidate('things', things = $$props.things);
if ('foo' in $$props) $$invalidate('foo', foo = $$props.foo);
if ('bar' in $$props) $$invalidate('bar', bar = $$props.bar);

@ -142,7 +142,7 @@ function create_fragment(component, ctx) {
function instance($$self, $$props, $$invalidate) {
let { things, foo } = $$props;
$$self.$$.set = $$props => {
$$self.$set = $$props => {
if ('things' in $$props) $$invalidate('things', things = $$props.things);
if ('foo' in $$props) $$invalidate('foo', foo = $$props.foo);
};

@ -108,7 +108,7 @@ function create_fragment(component, ctx) {
function instance($$self, $$props, $$invalidate) {
let { createElement } = $$props;
$$self.$$.set = $$props => {
$$self.$set = $$props => {
if ('createElement' in $$props) $$invalidate('createElement', createElement = $$props.createElement);
};

@ -22,7 +22,7 @@ function instance($$self, $$props, $$invalidate) {
alert(JSON.stringify(data()));
});
$$self.$$.set = $$props => {
$$self.$set = $$props => {
if ('foo' in $$props) $$invalidate('foo', foo = $$props.foo);
};

@ -57,7 +57,7 @@ function instance($$self, $$props, $$invalidate) {
let bar;
$$self.$$.set = $$props => {
$$self.$set = $$props => {
if ('foo' in $$props) $$invalidate('foo', foo = $$props.foo);
};

@ -46,7 +46,7 @@ function create_fragment(component, ctx) {
function instance($$self, $$props, $$invalidate) {
let { bar } = $$props;
$$self.$$.set = $$props => {
$$self.$set = $$props => {
if ('bar' in $$props) $$invalidate('bar', bar = $$props.bar);
};

@ -46,7 +46,7 @@ function create_fragment(component, ctx) {
function instance($$self, $$props, $$invalidate) {
let { bar } = $$props;
$$self.$$.set = $$props => {
$$self.$set = $$props => {
if ('bar' in $$props) $$invalidate('bar', bar = $$props.bar);
};

@ -44,7 +44,7 @@ function create_fragment(component, ctx) {
function instance($$self, $$props, $$invalidate) {
let { bar } = $$props;
$$self.$$.set = $$props => {
$$self.$set = $$props => {
if ('bar' in $$props) $$invalidate('bar', bar = $$props.bar);
};

@ -148,7 +148,7 @@ function create_fragment(component, ctx) {
function instance($$self, $$props, $$invalidate) {
let { comments, elapsed, time, foo } = $$props;
$$self.$$.set = $$props => {
$$self.$set = $$props => {
if ('comments' in $$props) $$invalidate('comments', comments = $$props.comments);
if ('elapsed' in $$props) $$invalidate('elapsed', elapsed = $$props.elapsed);
if ('time' in $$props) $$invalidate('time', time = $$props.time);

@ -123,7 +123,7 @@ function foo(node, animation, params) {
function instance($$self, $$props, $$invalidate) {
let { things } = $$props;
$$self.$$.set = $$props => {
$$self.$set = $$props => {
if ('things' in $$props) $$invalidate('things', things = $$props.things);
};

@ -93,7 +93,7 @@ function create_fragment(component, ctx) {
function instance($$self, $$props, $$invalidate) {
let { things } = $$props;
$$self.$$.set = $$props => {
$$self.$set = $$props => {
if ('things' in $$props) $$invalidate('things', things = $$props.things);
};

@ -96,7 +96,7 @@ function create_fragment(component, ctx) {
function instance($$self, $$props, $$invalidate) {
let { foo } = $$props;
$$self.$$.set = $$props => {
$$self.$set = $$props => {
if ('foo' in $$props) $$invalidate('foo', foo = $$props.foo);
};

@ -72,7 +72,7 @@ function create_fragment(component, ctx) {
function instance($$self, $$props, $$invalidate) {
let { foo } = $$props;
$$self.$$.set = $$props => {
$$self.$set = $$props => {
if ('foo' in $$props) $$invalidate('foo', foo = $$props.foo);
};

@ -44,7 +44,7 @@ function create_fragment(component, ctx) {
function instance($$self, $$props, $$invalidate) {
let { color, x, y } = $$props;
$$self.$$.set = $$props => {
$$self.$set = $$props => {
if ('color' in $$props) $$invalidate('color', color = $$props.color);
if ('x' in $$props) $$invalidate('x', x = $$props.x);
if ('y' in $$props) $$invalidate('y', y = $$props.y);

@ -39,7 +39,7 @@ function create_fragment(component, ctx) {
function instance($$self, $$props, $$invalidate) {
let { data } = $$props;
$$self.$$.set = $$props => {
$$self.$set = $$props => {
if ('data' in $$props) $$invalidate('data', data = $$props.data);
};

@ -39,7 +39,7 @@ function create_fragment(component, ctx) {
function instance($$self, $$props, $$invalidate) {
let { color } = $$props;
$$self.$$.set = $$props => {
$$self.$set = $$props => {
if ('color' in $$props) $$invalidate('color', color = $$props.color);
};

@ -50,7 +50,7 @@ function create_fragment(component, ctx) {
function instance($$self, $$props, $$invalidate) {
let { style, key, value } = $$props;
$$self.$$.set = $$props => {
$$self.$set = $$props => {
if ('style' in $$props) $$invalidate('style', style = $$props.style);
if ('key' in $$props) $$invalidate('key', key = $$props.key);
if ('value' in $$props) $$invalidate('value', value = $$props.value);

@ -49,7 +49,7 @@ function instance($$self, $$props, $$invalidate) {
$$invalidate('files', files);
}
$$self.$$.set = $$props => {
$$self.$set = $$props => {
if ('files' in $$props) $$invalidate('files', files = $$props.files);
};

@ -52,7 +52,7 @@ function instance($$self, $$props, $$invalidate) {
$$invalidate('value', value);
}
$$self.$$.set = $$props => {
$$self.$set = $$props => {
if ('value' in $$props) $$invalidate('value', value = $$props.value);
};

@ -48,7 +48,7 @@ function instance($$self, $$props, $$invalidate) {
$$invalidate('foo', foo);
}
$$self.$$.set = $$props => {
$$self.$set = $$props => {
if ('foo' in $$props) $$invalidate('foo', foo = $$props.foo);
};

@ -93,7 +93,7 @@ function instance($$self, $$props, $$invalidate) {
$$invalidate('volume', volume);
}
$$self.$$.set = $$props => {
$$self.$set = $$props => {
if ('buffered' in $$props) $$invalidate('buffered', buffered = $$props.buffered);
if ('seekable' in $$props) $$invalidate('seekable', seekable = $$props.seekable);
if ('played' in $$props) $$invalidate('played', played = $$props.played);

@ -66,7 +66,7 @@ function create_fragment(component, ctx) {
function instance($$self, $$props, $$invalidate) {
let { current } = $$props;
$$self.$$.set = $$props => {
$$self.$set = $$props => {
if ('current' in $$props) $$invalidate('current', current = $$props.current);
};

@ -25,7 +25,7 @@ function create_fragment(component, ctx) {
function instance($$self, $$props, $$invalidate) {
let { custom } = $$props;
$$self.$$.set = $$props => {
$$self.$set = $$props => {
if ('custom' in $$props) $$invalidate('custom', custom = $$props.custom);
};

@ -252,7 +252,7 @@ function create_fragment(component, ctx) {
function instance($$self, $$props, $$invalidate) {
let { a, b, c, d, e } = $$props;
$$self.$$.set = $$props => {
$$self.$set = $$props => {
if ('a' in $$props) $$invalidate('a', a = $$props.a);
if ('b' in $$props) $$invalidate('b', b = $$props.b);
if ('c' in $$props) $$invalidate('c', c = $$props.c);

@ -63,7 +63,7 @@ function instance($$self, $$props, $$invalidate) {
y = window.pageYOffset; $$invalidate('y', y);
}
$$self.$$.set = $$props => {
$$self.$set = $$props => {
if ('y' in $$props) $$invalidate('y', y = $$props.y);
};

Loading…
Cancel
Save