update tests

pull/4501/head
Conduitry 6 years ago
parent 16021129d8
commit 0efe244e40

@ -14,7 +14,7 @@ import {
space, space,
subscribe, subscribe,
text, text,
validate_slot, validate_slots,
validate_store validate_store
} from "svelte/internal"; } from "svelte/internal";
@ -116,7 +116,7 @@ function instance($$self, $$props, $$invalidate) {
}); });
let { $$slots = {}, $$scope } = $$props; let { $$slots = {}, $$scope } = $$props;
validate_slot($$slots, []); validate_slots("Component", $$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));

@ -13,7 +13,7 @@ import {
set_data_dev, set_data_dev,
space, space,
text, text,
validate_slot validate_slots
} from "svelte/internal"; } from "svelte/internal";
const file = undefined; const file = undefined;
@ -77,7 +77,7 @@ function instance($$self, $$props, $$invalidate) {
}); });
let { $$slots = {}, $$scope } = $$props; let { $$slots = {}, $$scope } = $$props;
validate_slot($$slots, []); validate_slots("Component", $$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);

@ -15,7 +15,7 @@ import {
space, space,
text, text,
validate_each_argument, validate_each_argument,
validate_slot validate_slots
} from "svelte/internal"; } from "svelte/internal";
const file = undefined; const file = undefined;
@ -181,7 +181,7 @@ function instance($$self, $$props, $$invalidate) {
}); });
let { $$slots = {}, $$scope } = $$props; let { $$slots = {}, $$scope } = $$props;
validate_slot($$slots, []); validate_slots("Component", $$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);

@ -15,7 +15,7 @@ import {
space, space,
text, text,
validate_each_argument, validate_each_argument,
validate_slot validate_slots
} from "svelte/internal"; } from "svelte/internal";
const file = undefined; const file = undefined;
@ -173,7 +173,7 @@ function instance($$self, $$props, $$invalidate) {
}); });
let { $$slots = {}, $$scope } = $$props; let { $$slots = {}, $$scope } = $$props;
validate_slot($$slots, []); validate_slots("Component", $$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);

@ -5,7 +5,7 @@ import {
init, init,
noop, noop,
safe_not_equal, safe_not_equal,
validate_slot validate_slots
} from "svelte/internal"; } from "svelte/internal";
const file = undefined; const file = undefined;
@ -58,7 +58,7 @@ function instance($$self, $$props, $$invalidate) {
}); });
let { $$slots = {}, $$scope } = $$props; let { $$slots = {}, $$scope } = $$props;
validate_slot($$slots, []); validate_slots("Component", $$slots, []);
$$self.$capture_state = () => ({ obj, kobzol }); $$self.$capture_state = () => ({ obj, kobzol });
$$self.$inject_state = $$props => { $$self.$inject_state = $$props => {

@ -12,7 +12,7 @@ import {
space, space,
text, text,
validate_each_argument, validate_each_argument,
validate_slot validate_slots
} from "svelte/internal"; } from "svelte/internal";
const file = undefined; const file = undefined;
@ -143,7 +143,7 @@ function instance($$self, $$props) {
}); });
let { $$slots = {}, $$scope } = $$props; let { $$slots = {}, $$scope } = $$props;
validate_slot($$slots, []); validate_slots("Component", $$slots, []);
return []; return [];
} }

@ -13,7 +13,7 @@ import {
set_data_dev, set_data_dev,
space, space,
text, text,
validate_slot validate_slots
} from "svelte/internal"; } from "svelte/internal";
const file = undefined; const file = undefined;
@ -74,7 +74,7 @@ function instance($$self, $$props, $$invalidate) {
}); });
let { $$slots = {}, $$scope } = $$props; let { $$slots = {}, $$scope } = $$props;
validate_slot($$slots, []); validate_slots("Component", $$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);

@ -12,7 +12,7 @@ import {
loop_guard, loop_guard,
noop, noop,
safe_not_equal, safe_not_equal,
validate_slot validate_slots
} from "svelte/internal"; } from "svelte/internal";
const { console: console_1 } = globals; const { console: console_1 } = globals;
@ -112,7 +112,7 @@ function instance($$self, $$props, $$invalidate) {
}); });
let { $$slots = {}, $$scope } = $$props; let { $$slots = {}, $$scope } = $$props;
validate_slot($$slots, []); validate_slots("Component", $$slots, []);
function div_binding($$value) { function div_binding($$value) {
binding_callbacks[$$value ? "unshift" : "push"](() => { binding_callbacks[$$value ? "unshift" : "push"](() => {

@ -3,7 +3,7 @@ export default {
dev: true dev: true
}, },
warnings: [ warnings: [
'Received unexpected slot named "default"', '<Nested> received an unexpected slot "default".',
'Received unexpected slot named "slot1"' '<Nested> received an unexpected slot "slot1".'
] ]
}; };

Loading…
Cancel
Save