Revert "add 'noop' param to all tests"

This reverts commit c0ac80fbda.
pull/5639/head
Ivan Hofer 5 years ago
parent 675d6ddd10
commit ae4731772b

@ -48,7 +48,7 @@ function handleFoo(bar) {
}
function foo(node, callback) {
} // code goes here
function instance($$self, $$props, $$invalidate) {
@ -65,7 +65,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, { bar: 0 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { bar: 0 });
}
}

@ -49,7 +49,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, {}, noop);
init(this, options, instance, create_fragment, safe_not_equal, {});
}
}

@ -62,7 +62,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, { open: 0 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { open: 0 });
}
}

@ -57,7 +57,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, { w: 0, h: 1 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { w: 0, h: 1 });
}
}

@ -78,7 +78,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, { files: 0 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { files: 0 });
}
}

@ -75,7 +75,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, {}, noop);
init(this, options, instance, create_fragment, safe_not_equal, {});
}
}

@ -158,7 +158,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponentDev {
constructor(options) {
super(options);
init(this, options, instance, create_fragment, safe_not_equal, { prop: 0, alias: 1 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { prop: 0, alias: 1 });
dispatch_dev("SvelteRegisterComponent", {
component: this,

@ -59,7 +59,7 @@ class Component extends SvelteComponent {
constructor(options) {
super();
if (!document.getElementById("svelte-1a7i8ec-style")) add_css();
init(this, options, instance, create_fragment, safe_not_equal, { foo: 0 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { foo: 0 });
}
}

@ -48,7 +48,7 @@ function instance($$self) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, {}, noop);
init(this, options, instance, create_fragment, safe_not_equal, {});
}
}

@ -9,7 +9,6 @@ import {
insert,
listen,
mount_component,
noop,
safe_not_equal,
set_input_value,
space,
@ -102,7 +101,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, {}, noop);
init(this, options, instance, create_fragment, safe_not_equal, {});
}
}

@ -48,7 +48,7 @@ function instance($$self) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, {}, noop);
init(this, options, instance, create_fragment, safe_not_equal, {});
}
}

@ -49,7 +49,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, {}, noop);
init(this, options, instance, create_fragment, safe_not_equal, {});
}
}

@ -74,7 +74,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, {}, noop);
init(this, options, instance, create_fragment, safe_not_equal, {});
}
}

@ -57,7 +57,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, { bar: 0 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { bar: 0 });
}
}

@ -98,7 +98,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponentDev {
constructor(options) {
super(options);
init(this, options, instance, create_fragment, safe_not_equal, { name: 0 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { name: 0 });
dispatch_dev("SvelteRegisterComponent", {
component: this,

@ -208,7 +208,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponentDev {
constructor(options) {
super(options);
init(this, options, instance, create_fragment, safe_not_equal, { things: 0, foo: 1, bar: 2, baz: 3 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { things: 0, foo: 1, bar: 2, baz: 3 });
dispatch_dev("SvelteRegisterComponent", {
component: this,

@ -196,7 +196,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponentDev {
constructor(options) {
super(options);
init(this, options, instance, create_fragment, safe_not_equal, { things: 0, foo: 1 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { things: 0, foo: 1 });
dispatch_dev("SvelteRegisterComponent", {
component: this,

@ -76,7 +76,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponentDev {
constructor(options) {
super(options);
init(this, options, instance, create_fragment, safe_not_equal, {}, noop);
init(this, options, instance, create_fragment, safe_not_equal, {});
dispatch_dev("SvelteRegisterComponent", {
component: this,

@ -150,7 +150,7 @@ function instance($$self, $$props) {
class Component extends SvelteComponentDev {
constructor(options) {
super(options);
init(this, options, instance, create_fragment, safe_not_equal, {}, noop);
init(this, options, instance, create_fragment, safe_not_equal, {});
dispatch_dev("SvelteRegisterComponent", {
component: this,

@ -114,7 +114,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, { createElement: 0 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { createElement: 0 });
}
}

@ -102,7 +102,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponentDev {
constructor(options) {
super(options);
init(this, options, instance, create_fragment, safe_not_equal, { foo: 0 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { foo: 0 });
dispatch_dev("SvelteRegisterComponent", {
component: this,

@ -120,7 +120,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, { a: 0, b: 1, c: 2, d: 3, e: 4 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { a: 0, b: 1, c: 2, d: 3, e: 4 });
}
}

@ -165,7 +165,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, { comments: 0, elapsed: 1, time: 2, foo: 3 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { comments: 0, elapsed: 1, time: 2, foo: 3 });
}
}

@ -138,7 +138,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, { things: 0 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { things: 0 });
}
}

@ -107,7 +107,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, { things: 0 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { things: 0 });
}
}

@ -103,7 +103,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, {}, noop);
init(this, options, instance, create_fragment, safe_not_equal, {});
}
}

@ -60,7 +60,7 @@ function instance($$self) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, {}, noop);
init(this, options, instance, create_fragment, safe_not_equal, {});
}
}

@ -98,7 +98,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, { foo: 0 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { foo: 0 });
}
}

@ -43,7 +43,7 @@ function create_fragment(ctx) {
p(ctx, [dirty]) {
if (/*foo*/ ctx[0]) {
if (if_block) {
} else {
if_block = create_if_block(ctx);
if_block.c();
@ -76,7 +76,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, { foo: 0 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { foo: 0 });
}
}

@ -46,7 +46,7 @@ function instance($$self) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, {}, noop);
init(this, options, instance, create_fragment, safe_not_equal, {});
}
}

@ -52,7 +52,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, {}, noop);
init(this, options, instance, create_fragment, safe_not_equal, {});
}
}

@ -56,7 +56,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, { color: 0, x: 1, y: 2 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { color: 0, x: 1, y: 2 });
}
}

@ -47,7 +47,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, { data: 0 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { data: 0 });
}
}

@ -47,7 +47,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, { color: 0 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { color: 0 });
}
}

@ -59,7 +59,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, { files: 0 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { files: 0 });
}
}

@ -70,7 +70,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, { value: 0 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { value: 0 });
}
}

@ -76,7 +76,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, {}, noop);
init(this, options, instance, create_fragment, safe_not_equal, {});
}
}

@ -63,7 +63,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, { foo: 0 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { foo: 0 });
}
}

@ -72,7 +72,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, {}, noop);
init(this, options, instance, create_fragment, safe_not_equal, {});
}
}

@ -68,7 +68,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, {}, noop);
init(this, options, instance, create_fragment, safe_not_equal, {});
}
}

@ -74,7 +74,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, {}, noop);
init(this, options, instance, create_fragment, safe_not_equal, {});
}
}

@ -72,7 +72,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, {}, noop);
init(this, options, instance, create_fragment, safe_not_equal, {});
}
}

@ -74,7 +74,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, {}, noop);
init(this, options, instance, create_fragment, safe_not_equal, {});
}
}

@ -154,7 +154,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponentDev {
constructor(options) {
super(options);
init(this, options, instance, create_fragment, safe_not_equal, {}, noop);
init(this, options, instance, create_fragment, safe_not_equal, {});
dispatch_dev("SvelteRegisterComponent", {
component: this,

@ -227,7 +227,7 @@ class Component extends SvelteComponent {
playbackRate: 8,
seeking: 9,
ended: 10
}, noop);
});
}
}

@ -9,7 +9,6 @@ import {
init,
insert,
mount_component,
noop,
safe_not_equal,
set_data,
space,
@ -183,7 +182,7 @@ function instance($$self, $$props, $$invalidate) {
class Component_1 extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, { a: 0, b: 1, c: 2, d: 3, e: 4, f: 5 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { a: 0, b: 1, c: 2, d: 3, e: 4, f: 5 });
}
}

@ -60,7 +60,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, { current: 0 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { current: 0 });
}
}

@ -78,7 +78,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, { url: 0, slug: 1 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { url: 0, slug: 1 });
}
}

@ -32,7 +32,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, { custom: 0 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { custom: 0 });
}
}

@ -117,7 +117,7 @@ function create_fragment(ctx) {
}
function foo() {
}
function instance($$self, $$props, $$invalidate) {
@ -135,7 +135,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, { x: 0, y: 1 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { x: 0, y: 1 });
}
}

@ -9,7 +9,6 @@ import {
group_outros,
init,
insert,
noop,
safe_not_equal,
transition_in,
transition_out
@ -113,7 +112,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, { num: 0 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { num: 0 });
}
}

@ -85,7 +85,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, {}, noop);
init(this, options, instance, create_fragment, safe_not_equal, {});
}
}

@ -70,7 +70,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, {}, noop);
init(this, options, instance, create_fragment, safe_not_equal, {});
}
}

@ -158,7 +158,7 @@ function create_fragment(ctx) {
p(ctx, [dirty]) {
if (/*a*/ ctx[0]) {
if (if_block0) {
} else {
if_block0 = create_if_block_4(ctx);
if_block0.c();
@ -171,7 +171,7 @@ function create_fragment(ctx) {
if (/*b*/ ctx[1]) {
if (if_block1) {
} else {
if_block1 = create_if_block_3(ctx);
if_block1.c();
@ -184,7 +184,7 @@ function create_fragment(ctx) {
if (/*c*/ ctx[2]) {
if (if_block2) {
} else {
if_block2 = create_if_block_2(ctx);
if_block2.c();
@ -197,7 +197,7 @@ function create_fragment(ctx) {
if (/*d*/ ctx[3]) {
if (if_block3) {
} else {
if_block3 = create_if_block_1(ctx);
if_block3.c();
@ -210,7 +210,7 @@ function create_fragment(ctx) {
if (/*e*/ ctx[4]) {
if (if_block4) {
} else {
if_block4 = create_if_block(ctx);
if_block4.c();
@ -257,7 +257,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, { a: 0, b: 1, c: 2, d: 3, e: 4 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { a: 0, b: 1, c: 2, d: 3, e: 4 });
}
}

@ -120,7 +120,7 @@ class Component extends SvelteComponent {
videoHeight: 1,
videoWidth: 2,
offsetWidth: 3
}, noop);
});
}
}

@ -49,7 +49,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, {}, noop);
init(this, options, instance, create_fragment, safe_not_equal, {});
}
}

@ -88,7 +88,7 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, { y: 0 }, noop);
init(this, options, instance, create_fragment, safe_not_equal, { y: 0 });
}
}

Loading…
Cancel
Save