fix tests for exportProps

pull/3917/head
Yury Zhuravlev 6 years ago
parent 27854a37ff
commit 69501aed32

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

@ -53,7 +53,8 @@ function link(node) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, null, create_fragment, safe_not_equal, {}); this.exportProps = {};
init(this, options, null, create_fragment, safe_not_equal, this.exportProps);
} }
} }

@ -43,7 +43,8 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, instance, create_fragment, safe_not_equal, {}); this.exportProps = {};
init(this, options, instance, create_fragment, safe_not_equal, this.exportProps);
} }
} }

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

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

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

@ -69,7 +69,8 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, instance, create_fragment, safe_not_equal, {}); this.exportProps = {};
init(this, options, instance, create_fragment, safe_not_equal, this.exportProps);
} }
} }

@ -58,8 +58,9 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
this.exportProps = { foo: 0 };
if (!document.getElementById("svelte-1a7i8ec-style")) add_css(); if (!document.getElementById("svelte-1a7i8ec-style")) add_css();
init(this, options, instance, create_fragment, safe_not_equal, { foo: 0 }); init(this, options, instance, create_fragment, safe_not_equal, this.exportProps);
} }
} }

@ -47,7 +47,8 @@ function instance($$self) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, instance, create_fragment, safe_not_equal, {}); this.exportProps = {};
init(this, options, instance, create_fragment, safe_not_equal, this.exportProps);
} }
} }

@ -47,7 +47,8 @@ function instance($$self) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, instance, create_fragment, not_equal, {}); this.exportProps = {};
init(this, options, instance, create_fragment, not_equal, this.exportProps);
} }
} }

@ -47,7 +47,8 @@ function instance($$self) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, instance, create_fragment, not_equal, {}); this.exportProps = {};
init(this, options, instance, create_fragment, not_equal, this.exportProps);
} }
} }

@ -93,7 +93,8 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, instance, create_fragment, safe_not_equal, {}); this.exportProps = {};
init(this, options, instance, create_fragment, safe_not_equal, this.exportProps);
} }
} }

@ -47,7 +47,8 @@ function instance($$self) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, instance, create_fragment, safe_not_equal, {}); this.exportProps = {};
init(this, options, instance, create_fragment, safe_not_equal, this.exportProps);
} }
} }

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

@ -23,7 +23,8 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, instance, null, safe_not_equal, { increment: 0 }); this.exportProps = { increment: 0 };
init(this, options, instance, null, safe_not_equal, this.exportProps);
} }
get increment() { get increment() {

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

@ -22,7 +22,8 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, instance, null, safe_not_equal, { x: 0, a: 0, b: 0 }); this.exportProps = { x: 0, a: 0, b: 0 };
init(this, options, instance, null, safe_not_equal, this.exportProps);
} }
get a() { get a() {

@ -41,8 +41,9 @@ function create_fragment(ctx) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
this.exportProps = {};
if (!document.getElementById("svelte-1slhpfn-style")) add_css(); if (!document.getElementById("svelte-1slhpfn-style")) add_css();
init(this, options, null, create_fragment, safe_not_equal, {}); init(this, options, null, create_fragment, safe_not_equal, this.exportProps);
} }
} }

@ -33,8 +33,9 @@ function create_fragment(ctx) {
class Component extends SvelteElement { class Component extends SvelteElement {
constructor(options) { constructor(options) {
super(); super();
this.exportProps = {};
this.shadowRoot.innerHTML = `<style>div{animation:foo 1s}@keyframes foo{0%{opacity:0}100%{opacity:1}}</style>`; this.shadowRoot.innerHTML = `<style>div{animation:foo 1s}@keyframes foo{0%{opacity:0}100%{opacity:1}}</style>`;
init(this, { target: this.shadowRoot }, null, create_fragment, safe_not_equal, {}); init(this, { target: this.shadowRoot }, null, create_fragment, safe_not_equal, this.exportProps);
if (options) { if (options) {
if (options.target) { if (options.target) {

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

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

@ -194,7 +194,8 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponentDev { class Component extends SvelteComponentDev {
constructor(options) { constructor(options) {
super(options); super(options);
init(this, options, instance, create_fragment, safe_not_equal, { things: 0, foo: 0, bar: 0, baz: 0 }); this.exportProps = { things: 0, foo: 0, bar: 0, baz: 0 };
init(this, options, instance, create_fragment, safe_not_equal, this.exportProps);
dispatch_dev("SvelteRegisterComponent", { dispatch_dev("SvelteRegisterComponent", {
component: this, component: this,

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

@ -65,7 +65,8 @@ function instance($$self) {
class Component extends SvelteComponentDev { class Component extends SvelteComponentDev {
constructor(options) { constructor(options) {
super(options); super(options);
init(this, options, instance, create_fragment, safe_not_equal, {}); this.exportProps = {};
init(this, options, instance, create_fragment, safe_not_equal, this.exportProps);
dispatch_dev("SvelteRegisterComponent", { dispatch_dev("SvelteRegisterComponent", {
component: this, component: this,

@ -134,7 +134,8 @@ function create_fragment(ctx) {
class Component extends SvelteComponentDev { class Component extends SvelteComponentDev {
constructor(options) { constructor(options) {
super(options); super(options);
init(this, options, null, create_fragment, safe_not_equal, {}); this.exportProps = {};
init(this, options, null, create_fragment, safe_not_equal, this.exportProps);
dispatch_dev("SvelteRegisterComponent", { dispatch_dev("SvelteRegisterComponent", {
component: this, component: this,

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

@ -20,7 +20,8 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, instance, null, safe_not_equal, { foo: 0 }); this.exportProps = { foo: 0 };
init(this, options, instance, null, safe_not_equal, this.exportProps);
} }
} }

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

@ -39,7 +39,8 @@ function make_uppercase() {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, null, create_fragment, safe_not_equal, {}); this.exportProps = {};
init(this, options, null, create_fragment, safe_not_equal, this.exportProps);
} }
} }

@ -46,7 +46,8 @@ const func = () => import("./Foo.svelte");
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, null, create_fragment, safe_not_equal, {}); this.exportProps = {};
init(this, options, null, create_fragment, safe_not_equal, this.exportProps);
} }
} }

@ -120,7 +120,8 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, instance, create_fragment, safe_not_equal, { a: 0, b: 0, c: 0, d: 0, e: 0 }); this.exportProps = { a: 0, b: 0, c: 0, d: 0, e: 0 };
init(this, options, instance, create_fragment, safe_not_equal, this.exportProps);
} }
} }

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

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

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

@ -9,7 +9,8 @@ function instance($$self) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, instance, null, safe_not_equal, {}); this.exportProps = {};
init(this, options, instance, null, safe_not_equal, this.exportProps);
} }
} }

@ -101,7 +101,8 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, instance, create_fragment, safe_not_equal, {}); this.exportProps = {};
init(this, options, instance, create_fragment, safe_not_equal, this.exportProps);
} }
} }

@ -40,7 +40,8 @@ const touchstart_handler = e => e.preventDefault();
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, null, create_fragment, safe_not_equal, {}); this.exportProps = {};
init(this, options, null, create_fragment, safe_not_equal, this.exportProps);
} }
} }

@ -72,7 +72,8 @@ function handleClick() {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, null, create_fragment, safe_not_equal, {}); this.exportProps = {};
init(this, options, null, create_fragment, safe_not_equal, this.exportProps);
} }
} }

@ -40,7 +40,8 @@ function create_fragment(ctx) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, null, create_fragment, safe_not_equal, {}); this.exportProps = {};
init(this, options, null, create_fragment, safe_not_equal, this.exportProps);
} }
} }

@ -38,7 +38,8 @@ function get_answer() {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, null, create_fragment, safe_not_equal, {}); this.exportProps = {};
init(this, options, null, create_fragment, safe_not_equal, this.exportProps);
} }
} }

@ -38,7 +38,8 @@ function get_answer() {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, null, create_fragment, safe_not_equal, {}); this.exportProps = {};
init(this, options, null, create_fragment, safe_not_equal, this.exportProps);
} }
} }

@ -57,7 +57,8 @@ function create_fragment(ctx) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, null, create_fragment, safe_not_equal, {}); this.exportProps = {};
init(this, options, null, create_fragment, safe_not_equal, this.exportProps);
} }
} }

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

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

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

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

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

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

@ -66,7 +66,8 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, instance, create_fragment, safe_not_equal, { style: 0, key: 0, value: 0 }); this.exportProps = { style: 0, key: 0, value: 0 };
init(this, options, instance, create_fragment, safe_not_equal, this.exportProps);
} }
} }

@ -35,7 +35,8 @@ let color = "red";
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, null, create_fragment, safe_not_equal, {}); this.exportProps = {};
init(this, options, null, create_fragment, safe_not_equal, this.exportProps);
} }
} }

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

@ -77,7 +77,8 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, instance, create_fragment, safe_not_equal, {}); this.exportProps = {};
init(this, options, instance, create_fragment, safe_not_equal, this.exportProps);
} }
} }

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

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

@ -66,7 +66,8 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, instance, create_fragment, safe_not_equal, {}); this.exportProps = {};
init(this, options, instance, create_fragment, safe_not_equal, this.exportProps);
} }
} }

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

@ -66,7 +66,8 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, instance, create_fragment, safe_not_equal, {}); this.exportProps = {};
init(this, options, instance, create_fragment, safe_not_equal, this.exportProps);
} }
} }

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

@ -33,7 +33,8 @@ function create_fragment(ctx) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, null, create_fragment, safe_not_equal, {}); this.exportProps = {};
init(this, options, null, create_fragment, safe_not_equal, this.exportProps);
} }
} }

@ -95,7 +95,8 @@ function instance($$self) {
class Component extends SvelteComponentDev { class Component extends SvelteComponentDev {
constructor(options) { constructor(options) {
super(options); super(options);
init(this, options, instance, create_fragment, safe_not_equal, {}); this.exportProps = {};
init(this, options, instance, create_fragment, safe_not_equal, this.exportProps);
dispatch_dev("SvelteRegisterComponent", { dispatch_dev("SvelteRegisterComponent", {
component: this, component: this,

@ -167,7 +167,7 @@ class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, instance, create_fragment, safe_not_equal, { this.exportProps = {
buffered: 0, buffered: 0,
seekable: 0, seekable: 0,
played: 0, played: 0,
@ -176,7 +176,9 @@ class Component extends SvelteComponent {
paused: 0, paused: 0,
volume: 0, volume: 0,
playbackRate: 0 playbackRate: 0
}); };
init(this, options, instance, create_fragment, safe_not_equal, this.exportProps);
} }
} }

@ -57,7 +57,8 @@ function create_fragment(ctx) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, null, create_fragment, safe_not_equal, {}); this.exportProps = {};
init(this, options, null, create_fragment, safe_not_equal, this.exportProps);
} }
} }

@ -34,7 +34,8 @@ let name = "world";
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, null, create_fragment, safe_not_equal, {}); this.exportProps = {};
init(this, options, null, create_fragment, safe_not_equal, this.exportProps);
} }
} }

@ -26,7 +26,8 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, instance, null, safe_not_equal, { x: 0 }); this.exportProps = { x: 0 };
init(this, options, instance, null, safe_not_equal, this.exportProps);
} }
} }

@ -22,7 +22,8 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, instance, null, safe_not_equal, { a: 0, b: 0 }); this.exportProps = { a: 0, b: 0 };
init(this, options, instance, null, safe_not_equal, this.exportProps);
} }
} }

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

@ -10,7 +10,8 @@ function foo(bar) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, null, null, safe_not_equal, { foo: 0 }); this.exportProps = { foo: 0 };
init(this, options, null, null, safe_not_equal, this.exportProps);
} }
get foo() { get foo() {

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

@ -39,7 +39,8 @@ function create_fragment(ctx) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, null, create_fragment, safe_not_equal, {}); this.exportProps = {};
init(this, options, null, create_fragment, safe_not_equal, this.exportProps);
} }
} }

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

@ -133,7 +133,8 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, instance, create_fragment, safe_not_equal, { x: 0, y: 0 }); this.exportProps = { x: 0, y: 0 };
init(this, options, instance, create_fragment, safe_not_equal, this.exportProps);
} }
} }

@ -110,7 +110,8 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, instance, create_fragment, safe_not_equal, { num: 0 }); this.exportProps = { num: 0 };
init(this, options, instance, create_fragment, safe_not_equal, this.exportProps);
} }
} }

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

@ -73,7 +73,8 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, instance, create_fragment, safe_not_equal, {}); this.exportProps = {};
init(this, options, instance, create_fragment, safe_not_equal, this.exportProps);
} }
} }

@ -257,7 +257,8 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, instance, create_fragment, safe_not_equal, { a: 0, b: 0, c: 0, d: 0, e: 0 }); this.exportProps = { a: 0, b: 0, c: 0, d: 0, e: 0 };
init(this, options, instance, create_fragment, safe_not_equal, this.exportProps);
} }
} }

@ -43,7 +43,8 @@ function instance($$self, $$props, $$invalidate) {
class Component extends SvelteComponent { class Component extends SvelteComponent {
constructor(options) { constructor(options) {
super(); super();
init(this, options, instance, create_fragment, safe_not_equal, {}); this.exportProps = {};
init(this, options, instance, create_fragment, safe_not_equal, this.exportProps);
} }
} }

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

Loading…
Cancel
Save