update js code snapshot

pull/4501/head
Tan Li Hau 6 years ago
parent 0cf9861e1f
commit 6931a0c1cf

@ -14,6 +14,7 @@ import {
space, space,
subscribe, subscribe,
text, text,
validate_slot,
validate_store validate_store
} from "svelte/internal"; } from "svelte/internal";
@ -114,6 +115,9 @@ function instance($$self, $$props, $$invalidate) {
if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console.warn(`<Component> was created with unknown prop '${key}'`); if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console.warn(`<Component> was created with unknown prop '${key}'`);
}); });
let { $$slots = {}, $$scope } = $$props;
validate_slot($$slots, []);
$$self.$set = $$props => { $$self.$set = $$props => {
if ("prop" in $$props) $$subscribe_prop($$invalidate(0, prop = $$props.prop)); if ("prop" in $$props) $$subscribe_prop($$invalidate(0, prop = $$props.prop));
if ("alias" in $$props) $$invalidate(1, realName = $$props.alias); if ("alias" in $$props) $$invalidate(1, realName = $$props.alias);

@ -12,7 +12,8 @@ import {
safe_not_equal, safe_not_equal,
set_data_dev, set_data_dev,
space, space,
text text,
validate_slot
} from "svelte/internal"; } from "svelte/internal";
const file = undefined; const file = undefined;
@ -75,6 +76,9 @@ function instance($$self, $$props, $$invalidate) {
if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console.warn(`<Component> was created with unknown prop '${key}'`); if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console.warn(`<Component> was created with unknown prop '${key}'`);
}); });
let { $$slots = {}, $$scope } = $$props;
validate_slot($$slots, []);
$$self.$set = $$props => { $$self.$set = $$props => {
if ("name" in $$props) $$invalidate(0, name = $$props.name); if ("name" in $$props) $$invalidate(0, name = $$props.name);
}; };

@ -14,7 +14,8 @@ import {
set_data_dev, set_data_dev,
space, space,
text, text,
validate_each_argument validate_each_argument,
validate_slot
} from "svelte/internal"; } from "svelte/internal";
const file = undefined; const file = undefined;
@ -179,6 +180,9 @@ function instance($$self, $$props, $$invalidate) {
if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console.warn(`<Component> was created with unknown prop '${key}'`); if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console.warn(`<Component> was created with unknown prop '${key}'`);
}); });
let { $$slots = {}, $$scope } = $$props;
validate_slot($$slots, []);
$$self.$set = $$props => { $$self.$set = $$props => {
if ("things" in $$props) $$invalidate(0, things = $$props.things); if ("things" in $$props) $$invalidate(0, things = $$props.things);
if ("foo" in $$props) $$invalidate(1, foo = $$props.foo); if ("foo" in $$props) $$invalidate(1, foo = $$props.foo);

@ -14,7 +14,8 @@ import {
set_data_dev, set_data_dev,
space, space,
text, text,
validate_each_argument validate_each_argument,
validate_slot
} from "svelte/internal"; } from "svelte/internal";
const file = undefined; const file = undefined;
@ -171,6 +172,9 @@ function instance($$self, $$props, $$invalidate) {
if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console.warn(`<Component> was created with unknown prop '${key}'`); if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console.warn(`<Component> was created with unknown prop '${key}'`);
}); });
let { $$slots = {}, $$scope } = $$props;
validate_slot($$slots, []);
$$self.$set = $$props => { $$self.$set = $$props => {
if ("things" in $$props) $$invalidate(0, things = $$props.things); if ("things" in $$props) $$invalidate(0, things = $$props.things);
if ("foo" in $$props) $$invalidate(1, foo = $$props.foo); if ("foo" in $$props) $$invalidate(1, foo = $$props.foo);

@ -4,7 +4,8 @@ import {
dispatch_dev, dispatch_dev,
init, init,
noop, noop,
safe_not_equal safe_not_equal,
validate_slot
} from "svelte/internal"; } from "svelte/internal";
const file = undefined; const file = undefined;
@ -56,6 +57,8 @@ function instance($$self, $$props, $$invalidate) {
if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console.warn(`<Component> was created with unknown prop '${key}'`); if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console.warn(`<Component> was created with unknown prop '${key}'`);
}); });
let { $$slots = {}, $$scope } = $$props;
validate_slot($$slots, []);
$$self.$capture_state = () => ({ obj, kobzol }); $$self.$capture_state = () => ({ obj, kobzol });
$$self.$inject_state = $$props => { $$self.$inject_state = $$props => {

@ -11,7 +11,8 @@ import {
safe_not_equal, safe_not_equal,
space, space,
text, text,
validate_each_argument validate_each_argument,
validate_slot
} from "svelte/internal"; } from "svelte/internal";
const file = undefined; const file = undefined;
@ -141,6 +142,8 @@ function instance($$self, $$props) {
if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console.warn(`<Component> was created with unknown prop '${key}'`); if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console.warn(`<Component> was created with unknown prop '${key}'`);
}); });
let { $$slots = {}, $$scope } = $$props;
validate_slot($$slots, []);
return []; return [];
} }

@ -12,7 +12,8 @@ import {
safe_not_equal, safe_not_equal,
set_data_dev, set_data_dev,
space, space,
text text,
validate_slot
} from "svelte/internal"; } from "svelte/internal";
const file = undefined; const file = undefined;
@ -72,6 +73,9 @@ function instance($$self, $$props, $$invalidate) {
if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console.warn(`<Component> was created with unknown prop '${key}'`); if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console.warn(`<Component> was created with unknown prop '${key}'`);
}); });
let { $$slots = {}, $$scope } = $$props;
validate_slot($$slots, []);
$$self.$set = $$props => { $$self.$set = $$props => {
if ("foo" in $$props) $$invalidate(0, foo = $$props.foo); if ("foo" in $$props) $$invalidate(0, foo = $$props.foo);
}; };

@ -11,7 +11,8 @@ import {
insert_dev, insert_dev,
loop_guard, loop_guard,
noop, noop,
safe_not_equal safe_not_equal,
validate_slot
} from "svelte/internal"; } from "svelte/internal";
const { console: console_1 } = globals; const { console: console_1 } = globals;
@ -110,6 +111,9 @@ function instance($$self, $$props, $$invalidate) {
if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console_1.warn(`<Component> was created with unknown prop '${key}'`); if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console_1.warn(`<Component> was created with unknown prop '${key}'`);
}); });
let { $$slots = {}, $$scope } = $$props;
validate_slot($$slots, []);
function div_binding($$value) { function div_binding($$value) {
binding_callbacks[$$value ? "unshift" : "push"](() => { binding_callbacks[$$value ? "unshift" : "push"](() => {
$$invalidate(0, node = $$value); $$invalidate(0, node = $$value);

Loading…
Cancel
Save