Merge branch 'master' into gh-1360

pull/1389/head
Rich Harris 7 years ago
commit c01cde9065

@ -140,6 +140,8 @@ export default class Block {
} }
toString() { toString() {
const { dev } = this.compiler.options;
let introing; let introing;
const hasIntros = !this.builders.intro.isEmpty(); const hasIntros = !this.builders.intro.isEmpty();
if (hasIntros) { if (hasIntros) {
@ -177,10 +179,16 @@ export default class Block {
if (this.builders.create.isEmpty() && this.builders.hydrate.isEmpty()) { if (this.builders.create.isEmpty() && this.builders.hydrate.isEmpty()) {
properties.addBlock(`c: @noop,`); properties.addBlock(`c: @noop,`);
} else { } else {
const hydrate = !this.builders.hydrate.isEmpty() && (
this.compiler.options.hydratable
? `this.h()`
: this.builders.hydrate
);
properties.addBlock(deindent` properties.addBlock(deindent`
c: function create() { ${dev ? 'c: function create' : 'c'}() {
${this.builders.create} ${this.builders.create}
${!this.builders.hydrate.isEmpty() && `this.h();`} ${hydrate}
}, },
`); `);
} }
@ -190,7 +198,7 @@ export default class Block {
properties.addBlock(`l: @noop,`); properties.addBlock(`l: @noop,`);
} else { } else {
properties.addBlock(deindent` properties.addBlock(deindent`
l: function claim(nodes) { ${dev ? 'l: function claim' : 'l'}(nodes) {
${this.builders.claim} ${this.builders.claim}
${!this.builders.hydrate.isEmpty() && `this.h();`} ${!this.builders.hydrate.isEmpty() && `this.h();`}
}, },
@ -198,9 +206,9 @@ export default class Block {
} }
} }
if (!this.builders.hydrate.isEmpty()) { if (this.compiler.options.hydratable && !this.builders.hydrate.isEmpty()) {
properties.addBlock(deindent` properties.addBlock(deindent`
h: function hydrate() { ${dev ? 'h: function hydrate' : 'h'}() {
${this.builders.hydrate} ${this.builders.hydrate}
}, },
`); `);
@ -210,7 +218,7 @@ export default class Block {
properties.addBlock(`m: @noop,`); properties.addBlock(`m: @noop,`);
} else { } else {
properties.addBlock(deindent` properties.addBlock(deindent`
m: function mount(#target, anchor) { ${dev ? 'm: function mount' : 'm'}(#target, anchor) {
${this.builders.mount} ${this.builders.mount}
}, },
`); `);
@ -221,7 +229,7 @@ export default class Block {
properties.addBlock(`p: @noop,`); properties.addBlock(`p: @noop,`);
} else { } else {
properties.addBlock(deindent` properties.addBlock(deindent`
p: function update(changed, ${this.maintainContext ? '_ctx' : 'ctx'}) { ${dev ? 'p: function update' : 'p'}(changed, ${this.maintainContext ? '_ctx' : 'ctx'}) {
${this.maintainContext && `ctx = _ctx;`} ${this.maintainContext && `ctx = _ctx;`}
${this.builders.update} ${this.builders.update}
}, },
@ -232,7 +240,7 @@ export default class Block {
if (this.hasIntroMethod) { if (this.hasIntroMethod) {
if (hasIntros) { if (hasIntros) {
properties.addBlock(deindent` properties.addBlock(deindent`
i: function intro(#target, anchor) { ${dev ? 'i: function intro' : 'i'}(#target, anchor) {
if (${introing}) return; if (${introing}) return;
${introing} = true; ${introing} = true;
${hasOutros && `${outroing} = false;`} ${hasOutros && `${outroing} = false;`}
@ -244,7 +252,7 @@ export default class Block {
`); `);
} else { } else {
properties.addBlock(deindent` properties.addBlock(deindent`
i: function intro(#target, anchor) { ${dev ? 'i: function intro' : 'i'}(#target, anchor) {
this.m(#target, anchor); this.m(#target, anchor);
}, },
`); `);
@ -254,7 +262,7 @@ export default class Block {
if (this.hasOutroMethod) { if (this.hasOutroMethod) {
if (hasOutros) { if (hasOutros) {
properties.addBlock(deindent` properties.addBlock(deindent`
o: function outro(#outrocallback) { ${dev ? 'o: function outro' : 'o'}(#outrocallback) {
if (${outroing}) return; if (${outroing}) return;
${outroing} = true; ${outroing} = true;
${hasIntros && `${introing} = false;`} ${hasIntros && `${introing} = false;`}
@ -275,7 +283,7 @@ export default class Block {
properties.addBlock(`u: @noop,`); properties.addBlock(`u: @noop,`);
} else { } else {
properties.addBlock(deindent` properties.addBlock(deindent`
u: function unmount() { ${dev ? 'u: function unmount' : 'u'}() {
${this.builders.unmount} ${this.builders.unmount}
}, },
`); `);
@ -285,7 +293,7 @@ export default class Block {
properties.addBlock(`d: @noop`); properties.addBlock(`d: @noop`);
} else { } else {
properties.addBlock(deindent` properties.addBlock(deindent`
d: function destroy() { ${dev ? 'd: function destroy' : 'd'}() {
${this.builders.destroy} ${this.builders.destroy}
} }
`); `);

@ -154,28 +154,24 @@ function create_main_fragment(component, ctx) {
var a, link_action; var a, link_action;
return { return {
c: function create() { c() {
a = createElement("a"); a = createElement("a");
a.textContent = "Test"; a.textContent = "Test";
this.h();
},
h: function hydrate() {
a.href = "#"; a.href = "#";
link_action = link.call(component, a) || {}; link_action = link.call(component, a) || {};
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(a, target, anchor); insertNode(a, target, anchor);
}, },
p: noop, p: noop,
u: function unmount() { u() {
detachNode(a); detachNode(a);
}, },
d: function destroy$$1() { d() {
if (typeof link_action.destroy === 'function') link_action.destroy.call(component); if (typeof link_action.destroy === 'function') link_action.destroy.call(component);
} }
}; };

@ -21,28 +21,24 @@ function create_main_fragment(component, ctx) {
var a, link_action; var a, link_action;
return { return {
c: function create() { c() {
a = createElement("a"); a = createElement("a");
a.textContent = "Test"; a.textContent = "Test";
this.h();
},
h: function hydrate() {
a.href = "#"; a.href = "#";
link_action = link.call(component, a) || {}; link_action = link.call(component, a) || {};
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(a, target, anchor); insertNode(a, target, anchor);
}, },
p: noop, p: noop,
u: function unmount() { u() {
detachNode(a); detachNode(a);
}, },
d: function destroy() { d() {
if (typeof link_action.destroy === 'function') link_action.destroy.call(component); if (typeof link_action.destroy === 'function') link_action.destroy.call(component);
} }
}; };

@ -157,28 +157,24 @@ function create_main_fragment(component, ctx) {
var p, text; var p, text;
return { return {
c: function create() { c() {
p = createElement("p"); p = createElement("p");
text = createText(ctx.foo); text = createText(ctx.foo);
this.h();
},
h: function hydrate() {
p.className = "svelte-1a7i8ec"; p.className = "svelte-1a7i8ec";
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(p, target, anchor); insertNode(p, target, anchor);
appendNode(text, p); appendNode(text, p);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if (changed.foo) { if (changed.foo) {
text.data = ctx.foo; text.data = ctx.foo;
} }
}, },
u: function unmount() { u() {
detachNode(p); detachNode(p);
}, },

@ -16,28 +16,24 @@ function create_main_fragment(component, ctx) {
var p, text; var p, text;
return { return {
c: function create() { c() {
p = createElement("p"); p = createElement("p");
text = createText(ctx.foo); text = createText(ctx.foo);
this.h();
},
h: function hydrate() {
p.className = "svelte-1a7i8ec"; p.className = "svelte-1a7i8ec";
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(p, target, anchor); insertNode(p, target, anchor);
appendNode(text, p); appendNode(text, p);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if (changed.foo) { if (changed.foo) {
text.data = ctx.foo; text.data = ctx.foo;
} }
}, },
u: function unmount() { u() {
detachNode(p); detachNode(p);
}, },

@ -138,21 +138,21 @@ function create_main_fragment(component, ctx) {
}); });
return { return {
c: function create() { c() {
nested._fragment.c(); nested._fragment.c();
}, },
m: function mount(target, anchor) { m(target, anchor) {
nested._mount(target, anchor); nested._mount(target, anchor);
}, },
p: noop, p: noop,
u: function unmount() { u() {
nested._unmount(); nested._unmount();
}, },
d: function destroy$$1() { d() {
nested.destroy(false); nested.destroy(false);
} }
}; };

@ -12,21 +12,21 @@ function create_main_fragment(component, ctx) {
}); });
return { return {
c: function create() { c() {
nested._fragment.c(); nested._fragment.c();
}, },
m: function mount(target, anchor) { m(target, anchor) {
nested._mount(target, anchor); nested._mount(target, anchor);
}, },
p: noop, p: noop,
u: function unmount() { u() {
nested._unmount(); nested._unmount();
}, },
d: function destroy() { d() {
nested.destroy(false); nested.destroy(false);
} }
}; };

@ -138,21 +138,21 @@ function create_main_fragment(component, ctx) {
}); });
return { return {
c: function create() { c() {
nested._fragment.c(); nested._fragment.c();
}, },
m: function mount(target, anchor) { m(target, anchor) {
nested._mount(target, anchor); nested._mount(target, anchor);
}, },
p: noop, p: noop,
u: function unmount() { u() {
nested._unmount(); nested._unmount();
}, },
d: function destroy$$1() { d() {
nested.destroy(false); nested.destroy(false);
} }
}; };

@ -12,21 +12,21 @@ function create_main_fragment(component, ctx) {
}); });
return { return {
c: function create() { c() {
nested._fragment.c(); nested._fragment.c();
}, },
m: function mount(target, anchor) { m(target, anchor) {
nested._mount(target, anchor); nested._mount(target, anchor);
}, },
p: noop, p: noop,
u: function unmount() { u() {
nested._unmount(); nested._unmount();
}, },
d: function destroy() { d() {
nested.destroy(false); nested.destroy(false);
} }
}; };

@ -134,21 +134,21 @@ function create_main_fragment(component, ctx) {
}); });
return { return {
c: function create() { c() {
nested._fragment.c(); nested._fragment.c();
}, },
m: function mount(target, anchor) { m(target, anchor) {
nested._mount(target, anchor); nested._mount(target, anchor);
}, },
p: noop, p: noop,
u: function unmount() { u() {
nested._unmount(); nested._unmount();
}, },
d: function destroy$$1() { d() {
nested.destroy(false); nested.destroy(false);
} }
}; };

@ -12,21 +12,21 @@ function create_main_fragment(component, ctx) {
}); });
return { return {
c: function create() { c() {
nested._fragment.c(); nested._fragment.c();
}, },
m: function mount(target, anchor) { m(target, anchor) {
nested._mount(target, anchor); nested._mount(target, anchor);
}, },
p: noop, p: noop,
u: function unmount() { u() {
nested._unmount(); nested._unmount();
}, },
d: function destroy() { d() {
nested.destroy(false); nested.destroy(false);
} }
}; };

@ -150,22 +150,18 @@ function create_main_fragment(component, ctx) {
var div; var div;
return { return {
c: function create() { c() {
div = createElement("div"); div = createElement("div");
this.h();
},
h: function hydrate() {
div.className = "svelte-1slhpfn"; div.className = "svelte-1slhpfn";
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(div, target, anchor); insertNode(div, target, anchor);
}, },
p: noop, p: noop,
u: function unmount() { u() {
detachNode(div); detachNode(div);
}, },

@ -12,22 +12,18 @@ function create_main_fragment(component, ctx) {
var div; var div;
return { return {
c: function create() { c() {
div = createElement("div"); div = createElement("div");
this.h();
},
h: function hydrate() {
div.className = "svelte-1slhpfn"; div.className = "svelte-1slhpfn";
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(div, target, anchor); insertNode(div, target, anchor);
}, },
p: noop, p: noop,
u: function unmount() { u() {
detachNode(div); detachNode(div);
}, },

@ -139,19 +139,19 @@ function create_main_fragment(component, ctx) {
var div; var div;
return { return {
c: function create() { c() {
div = createElement("div"); div = createElement("div");
div.textContent = "fades in"; div.textContent = "fades in";
this.c = noop; this.c = noop;
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(div, target, anchor); insertNode(div, target, anchor);
}, },
p: noop, p: noop,
u: function unmount() { u() {
detachNode(div); detachNode(div);
}, },

@ -5,19 +5,19 @@ function create_main_fragment(component, ctx) {
var div; var div;
return { return {
c: function create() { c() {
div = createElement("div"); div = createElement("div");
div.textContent = "fades in"; div.textContent = "fades in";
this.c = noop; this.c = noop;
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(div, target, anchor); insertNode(div, target, anchor);
}, },
p: noop, p: noop,
u: function unmount() { u() {
detachNode(div); detachNode(div);
}, },

@ -165,7 +165,7 @@ function create_main_fragment(component, ctx) {
} }
return { return {
c: function create() { c() {
for (var i = 0; i < each_blocks.length; i += 1) { for (var i = 0; i < each_blocks.length; i += 1) {
each_blocks[i].c(); each_blocks[i].c();
} }
@ -173,7 +173,7 @@ function create_main_fragment(component, ctx) {
each_anchor = createComment(); each_anchor = createComment();
}, },
m: function mount(target, anchor) { m(target, anchor) {
for (var i = 0; i < each_blocks.length; i += 1) { for (var i = 0; i < each_blocks.length; i += 1) {
each_blocks[i].m(target, anchor); each_blocks[i].m(target, anchor);
} }
@ -181,7 +181,7 @@ function create_main_fragment(component, ctx) {
insertNode(each_anchor, target, anchor); insertNode(each_anchor, target, anchor);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if (changed.createElement) { if (changed.createElement) {
each_value = ctx.createElement; each_value = ctx.createElement;
@ -205,7 +205,7 @@ function create_main_fragment(component, ctx) {
} }
}, },
u: function unmount() { u() {
for (var i = 0; i < each_blocks.length; i += 1) { for (var i = 0; i < each_blocks.length; i += 1) {
each_blocks[i].u(); each_blocks[i].u();
} }
@ -213,7 +213,7 @@ function create_main_fragment(component, ctx) {
detachNode(each_anchor); detachNode(each_anchor);
}, },
d: function destroy$$1() { d() {
destroyEach(each_blocks); destroyEach(each_blocks);
} }
}; };
@ -224,23 +224,23 @@ function create_each_block(component, ctx) {
var span, text_value = ctx.node, text; var span, text_value = ctx.node, text;
return { return {
c: function create() { c() {
span = createElement("span"); span = createElement("span");
text = createText(text_value); text = createText(text_value);
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(span, target, anchor); insertNode(span, target, anchor);
appendNode(text, span); appendNode(text, span);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if ((changed.createElement) && text_value !== (text_value = ctx.node)) { if ((changed.createElement) && text_value !== (text_value = ctx.node)) {
text.data = text_value; text.data = text_value;
} }
}, },
u: function unmount() { u() {
detachNode(span); detachNode(span);
}, },

@ -13,7 +13,7 @@ function create_main_fragment(component, ctx) {
} }
return { return {
c: function create() { c() {
for (var i = 0; i < each_blocks.length; i += 1) { for (var i = 0; i < each_blocks.length; i += 1) {
each_blocks[i].c(); each_blocks[i].c();
} }
@ -21,7 +21,7 @@ function create_main_fragment(component, ctx) {
each_anchor = createComment(); each_anchor = createComment();
}, },
m: function mount(target, anchor) { m(target, anchor) {
for (var i = 0; i < each_blocks.length; i += 1) { for (var i = 0; i < each_blocks.length; i += 1) {
each_blocks[i].m(target, anchor); each_blocks[i].m(target, anchor);
} }
@ -29,7 +29,7 @@ function create_main_fragment(component, ctx) {
insertNode(each_anchor, target, anchor); insertNode(each_anchor, target, anchor);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if (changed.createElement) { if (changed.createElement) {
each_value = ctx.createElement; each_value = ctx.createElement;
@ -53,7 +53,7 @@ function create_main_fragment(component, ctx) {
} }
}, },
u: function unmount() { u() {
for (var i = 0; i < each_blocks.length; i += 1) { for (var i = 0; i < each_blocks.length; i += 1) {
each_blocks[i].u(); each_blocks[i].u();
} }
@ -61,7 +61,7 @@ function create_main_fragment(component, ctx) {
detachNode(each_anchor); detachNode(each_anchor);
}, },
d: function destroy() { d() {
destroyEach(each_blocks); destroyEach(each_blocks);
} }
}; };
@ -72,23 +72,23 @@ function create_each_block(component, ctx) {
var span, text_value = ctx.node, text; var span, text_value = ctx.node, text;
return { return {
c: function create() { c() {
span = createElement("span"); span = createElement("span");
text = createText(text_value); text = createText(text_value);
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(span, target, anchor); insertNode(span, target, anchor);
appendNode(text, span); appendNode(text, span);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if ((changed.createElement) && text_value !== (text_value = ctx.node)) { if ((changed.createElement) && text_value !== (text_value = ctx.node)) {
text.data = text_value; text.data = text_value;
} }
}, },
u: function unmount() { u() {
detachNode(span); detachNode(span);
}, },

@ -143,31 +143,27 @@ function create_main_fragment(component, ctx) {
var div, text, div_1; var div, text, div_1;
return { return {
c: function create() { c() {
div = createElement("div"); div = createElement("div");
text = createText("\n"); text = createText("\n");
div_1 = createElement("div"); div_1 = createElement("div");
this.h();
},
h: function hydrate() {
div.dataset.foo = "bar"; div.dataset.foo = "bar";
div_1.dataset.foo = ctx.bar; div_1.dataset.foo = ctx.bar;
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(div, target, anchor); insertNode(div, target, anchor);
insertNode(text, target, anchor); insertNode(text, target, anchor);
insertNode(div_1, target, anchor); insertNode(div_1, target, anchor);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if (changed.bar) { if (changed.bar) {
div_1.dataset.foo = ctx.bar; div_1.dataset.foo = ctx.bar;
} }
}, },
u: function unmount() { u() {
detachNode(div); detachNode(div);
detachNode(text); detachNode(text);
detachNode(div_1); detachNode(div_1);

@ -5,31 +5,27 @@ function create_main_fragment(component, ctx) {
var div, text, div_1; var div, text, div_1;
return { return {
c: function create() { c() {
div = createElement("div"); div = createElement("div");
text = createText("\n"); text = createText("\n");
div_1 = createElement("div"); div_1 = createElement("div");
this.h();
},
h: function hydrate() {
div.dataset.foo = "bar"; div.dataset.foo = "bar";
div_1.dataset.foo = ctx.bar; div_1.dataset.foo = ctx.bar;
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(div, target, anchor); insertNode(div, target, anchor);
insertNode(text, target, anchor); insertNode(text, target, anchor);
insertNode(div_1, target, anchor); insertNode(div_1, target, anchor);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if (changed.bar) { if (changed.bar) {
div_1.dataset.foo = ctx.bar; div_1.dataset.foo = ctx.bar;
} }
}, },
u: function unmount() { u() {
detachNode(div); detachNode(div);
detachNode(text); detachNode(text);
detachNode(div_1); detachNode(div_1);

@ -147,31 +147,27 @@ function create_main_fragment(component, ctx) {
var div, text, div_1; var div, text, div_1;
return { return {
c: function create() { c() {
div = createElement("div"); div = createElement("div");
text = createText("\n"); text = createText("\n");
div_1 = createElement("div"); div_1 = createElement("div");
this.h();
},
h: function hydrate() {
setAttribute(div, "data-foo", "bar"); setAttribute(div, "data-foo", "bar");
setAttribute(div_1, "data-foo", ctx.bar); setAttribute(div_1, "data-foo", ctx.bar);
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(div, target, anchor); insertNode(div, target, anchor);
insertNode(text, target, anchor); insertNode(text, target, anchor);
insertNode(div_1, target, anchor); insertNode(div_1, target, anchor);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if (changed.bar) { if (changed.bar) {
setAttribute(div_1, "data-foo", ctx.bar); setAttribute(div_1, "data-foo", ctx.bar);
} }
}, },
u: function unmount() { u() {
detachNode(div); detachNode(div);
detachNode(text); detachNode(text);
detachNode(div_1); detachNode(div_1);

@ -5,31 +5,27 @@ function create_main_fragment(component, ctx) {
var div, text, div_1; var div, text, div_1;
return { return {
c: function create() { c() {
div = createElement("div"); div = createElement("div");
text = createText("\n"); text = createText("\n");
div_1 = createElement("div"); div_1 = createElement("div");
this.h();
},
h: function hydrate() {
setAttribute(div, "data-foo", "bar"); setAttribute(div, "data-foo", "bar");
setAttribute(div_1, "data-foo", ctx.bar); setAttribute(div_1, "data-foo", ctx.bar);
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(div, target, anchor); insertNode(div, target, anchor);
insertNode(text, target, anchor); insertNode(text, target, anchor);
insertNode(div_1, target, anchor); insertNode(div_1, target, anchor);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if (changed.bar) { if (changed.bar) {
setAttribute(div_1, "data-foo", ctx.bar); setAttribute(div_1, "data-foo", ctx.bar);
} }
}, },
u: function unmount() { u() {
detachNode(div); detachNode(div);
detachNode(text); detachNode(text);
detachNode(div_1); detachNode(div_1);

@ -147,31 +147,27 @@ function create_main_fragment(component, ctx) {
var svg, g, g_1; var svg, g, g_1;
return { return {
c: function create() { c() {
svg = createSvgElement("svg"); svg = createSvgElement("svg");
g = createSvgElement("g"); g = createSvgElement("g");
g_1 = createSvgElement("g"); g_1 = createSvgElement("g");
this.h();
},
h: function hydrate() {
setAttribute(g, "data-foo", "bar"); setAttribute(g, "data-foo", "bar");
setAttribute(g_1, "data-foo", ctx.bar); setAttribute(g_1, "data-foo", ctx.bar);
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(svg, target, anchor); insertNode(svg, target, anchor);
appendNode(g, svg); appendNode(g, svg);
appendNode(g_1, svg); appendNode(g_1, svg);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if (changed.bar) { if (changed.bar) {
setAttribute(g_1, "data-foo", ctx.bar); setAttribute(g_1, "data-foo", ctx.bar);
} }
}, },
u: function unmount() { u() {
detachNode(svg); detachNode(svg);
}, },

@ -5,31 +5,27 @@ function create_main_fragment(component, ctx) {
var svg, g, g_1; var svg, g, g_1;
return { return {
c: function create() { c() {
svg = createSvgElement("svg"); svg = createSvgElement("svg");
g = createSvgElement("g"); g = createSvgElement("g");
g_1 = createSvgElement("g"); g_1 = createSvgElement("g");
this.h();
},
h: function hydrate() {
setAttribute(g, "data-foo", "bar"); setAttribute(g, "data-foo", "bar");
setAttribute(g_1, "data-foo", ctx.bar); setAttribute(g_1, "data-foo", ctx.bar);
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(svg, target, anchor); insertNode(svg, target, anchor);
appendNode(g, svg); appendNode(g, svg);
appendNode(g_1, svg); appendNode(g_1, svg);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if (changed.bar) { if (changed.bar) {
setAttribute(g_1, "data-foo", ctx.bar); setAttribute(g_1, "data-foo", ctx.bar);
} }
}, },
u: function unmount() { u() {
detachNode(svg); detachNode(svg);
}, },

@ -167,7 +167,7 @@ function create_main_fragment(component, ctx) {
} }
return { return {
c: function create() { c() {
for (var i = 0; i < each_blocks.length; i += 1) { for (var i = 0; i < each_blocks.length; i += 1) {
each_blocks[i].c(); each_blocks[i].c();
} }
@ -177,7 +177,7 @@ function create_main_fragment(component, ctx) {
text_1 = createText(ctx.foo); text_1 = createText(ctx.foo);
}, },
m: function mount(target, anchor) { m(target, anchor) {
for (var i = 0; i < each_blocks.length; i += 1) { for (var i = 0; i < each_blocks.length; i += 1) {
each_blocks[i].m(target, anchor); each_blocks[i].m(target, anchor);
} }
@ -187,7 +187,7 @@ function create_main_fragment(component, ctx) {
appendNode(text_1, p); appendNode(text_1, p);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if (changed.comments || changed.elapsed || changed.time) { if (changed.comments || changed.elapsed || changed.time) {
each_value = ctx.comments; each_value = ctx.comments;
@ -215,7 +215,7 @@ function create_main_fragment(component, ctx) {
} }
}, },
u: function unmount() { u() {
for (var i = 0; i < each_blocks.length; i += 1) { for (var i = 0; i < each_blocks.length; i += 1) {
each_blocks[i].u(); each_blocks[i].u();
} }
@ -224,7 +224,7 @@ function create_main_fragment(component, ctx) {
detachNode(p); detachNode(p);
}, },
d: function destroy$$1() { d() {
destroyEach(each_blocks); destroyEach(each_blocks);
} }
}; };
@ -235,7 +235,7 @@ function create_each_block(component, ctx) {
var div, strong, text, text_1, span, text_2_value = ctx.comment.author, text_2, text_3, text_4_value = ctx.elapsed(ctx.comment.time, ctx.time), text_4, text_5, text_6, raw_value = ctx.comment.html, raw_before; var div, strong, text, text_1, span, text_2_value = ctx.comment.author, text_2, text_3, text_4_value = ctx.elapsed(ctx.comment.time, ctx.time), text_4, text_5, text_6, raw_value = ctx.comment.html, raw_before;
return { return {
c: function create() { c() {
div = createElement("div"); div = createElement("div");
strong = createElement("strong"); strong = createElement("strong");
text = createText(ctx.i); text = createText(ctx.i);
@ -247,15 +247,11 @@ function create_each_block(component, ctx) {
text_5 = createText(" ago:"); text_5 = createText(" ago:");
text_6 = createText("\n\n\t\t"); text_6 = createText("\n\n\t\t");
raw_before = createElement('noscript'); raw_before = createElement('noscript');
this.h();
},
h: function hydrate() {
span.className = "meta"; span.className = "meta";
div.className = "comment"; div.className = "comment";
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(div, target, anchor); insertNode(div, target, anchor);
appendNode(strong, div); appendNode(strong, div);
appendNode(text, strong); appendNode(text, strong);
@ -270,7 +266,7 @@ function create_each_block(component, ctx) {
raw_before.insertAdjacentHTML("afterend", raw_value); raw_before.insertAdjacentHTML("afterend", raw_value);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if ((changed.comments) && text_2_value !== (text_2_value = ctx.comment.author)) { if ((changed.comments) && text_2_value !== (text_2_value = ctx.comment.author)) {
text_2.data = text_2_value; text_2.data = text_2_value;
} }
@ -285,7 +281,7 @@ function create_each_block(component, ctx) {
} }
}, },
u: function unmount() { u() {
detachAfter(raw_before); detachAfter(raw_before);
detachNode(div); detachNode(div);

@ -13,7 +13,7 @@ function create_main_fragment(component, ctx) {
} }
return { return {
c: function create() { c() {
for (var i = 0; i < each_blocks.length; i += 1) { for (var i = 0; i < each_blocks.length; i += 1) {
each_blocks[i].c(); each_blocks[i].c();
} }
@ -23,7 +23,7 @@ function create_main_fragment(component, ctx) {
text_1 = createText(ctx.foo); text_1 = createText(ctx.foo);
}, },
m: function mount(target, anchor) { m(target, anchor) {
for (var i = 0; i < each_blocks.length; i += 1) { for (var i = 0; i < each_blocks.length; i += 1) {
each_blocks[i].m(target, anchor); each_blocks[i].m(target, anchor);
} }
@ -33,7 +33,7 @@ function create_main_fragment(component, ctx) {
appendNode(text_1, p); appendNode(text_1, p);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if (changed.comments || changed.elapsed || changed.time) { if (changed.comments || changed.elapsed || changed.time) {
each_value = ctx.comments; each_value = ctx.comments;
@ -61,7 +61,7 @@ function create_main_fragment(component, ctx) {
} }
}, },
u: function unmount() { u() {
for (var i = 0; i < each_blocks.length; i += 1) { for (var i = 0; i < each_blocks.length; i += 1) {
each_blocks[i].u(); each_blocks[i].u();
} }
@ -70,7 +70,7 @@ function create_main_fragment(component, ctx) {
detachNode(p); detachNode(p);
}, },
d: function destroy() { d() {
destroyEach(each_blocks); destroyEach(each_blocks);
} }
}; };
@ -81,7 +81,7 @@ function create_each_block(component, ctx) {
var div, strong, text, text_1, span, text_2_value = ctx.comment.author, text_2, text_3, text_4_value = ctx.elapsed(ctx.comment.time, ctx.time), text_4, text_5, text_6, raw_value = ctx.comment.html, raw_before; var div, strong, text, text_1, span, text_2_value = ctx.comment.author, text_2, text_3, text_4_value = ctx.elapsed(ctx.comment.time, ctx.time), text_4, text_5, text_6, raw_value = ctx.comment.html, raw_before;
return { return {
c: function create() { c() {
div = createElement("div"); div = createElement("div");
strong = createElement("strong"); strong = createElement("strong");
text = createText(ctx.i); text = createText(ctx.i);
@ -93,15 +93,11 @@ function create_each_block(component, ctx) {
text_5 = createText(" ago:"); text_5 = createText(" ago:");
text_6 = createText("\n\n\t\t"); text_6 = createText("\n\n\t\t");
raw_before = createElement('noscript'); raw_before = createElement('noscript');
this.h();
},
h: function hydrate() {
span.className = "meta"; span.className = "meta";
div.className = "comment"; div.className = "comment";
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(div, target, anchor); insertNode(div, target, anchor);
appendNode(strong, div); appendNode(strong, div);
appendNode(text, strong); appendNode(text, strong);
@ -116,7 +112,7 @@ function create_each_block(component, ctx) {
raw_before.insertAdjacentHTML("afterend", raw_value); raw_before.insertAdjacentHTML("afterend", raw_value);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if ((changed.comments) && text_2_value !== (text_2_value = ctx.comment.author)) { if ((changed.comments) && text_2_value !== (text_2_value = ctx.comment.author)) {
text_2.data = text_2_value; text_2.data = text_2_value;
} }
@ -131,7 +127,7 @@ function create_each_block(component, ctx) {
} }
}, },
u: function unmount() { u() {
detachAfter(raw_before); detachAfter(raw_before);
detachNode(div); detachNode(div);

@ -148,32 +148,28 @@ function create_main_fragment(component, ctx) {
var button, foo_handler; var button, foo_handler;
return { return {
c: function create() { c() {
button = createElement("button"); button = createElement("button");
button.textContent = "foo"; button.textContent = "foo";
this.h();
},
h: function hydrate() {
foo_handler = foo.call(component, button, function(event) { foo_handler = foo.call(component, button, function(event) {
component.foo( ctx.bar ); component.foo( ctx.bar );
}); });
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(button, target, anchor); insertNode(button, target, anchor);
}, },
p: function update(changed, _ctx) { p(changed, _ctx) {
ctx = _ctx; ctx = _ctx;
}, },
u: function unmount() { u() {
detachNode(button); detachNode(button);
}, },
d: function destroy$$1() { d() {
foo_handler.destroy(); foo_handler.destroy();
} }
}; };

@ -15,32 +15,28 @@ function create_main_fragment(component, ctx) {
var button, foo_handler; var button, foo_handler;
return { return {
c: function create() { c() {
button = createElement("button"); button = createElement("button");
button.textContent = "foo"; button.textContent = "foo";
this.h();
},
h: function hydrate() {
foo_handler = foo.call(component, button, function(event) { foo_handler = foo.call(component, button, function(event) {
component.foo( ctx.bar ); component.foo( ctx.bar );
}); });
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(button, target, anchor); insertNode(button, target, anchor);
}, },
p: function update(changed, _ctx) { p(changed, _ctx) {
ctx = _ctx; ctx = _ctx;
}, },
u: function unmount() { u() {
detachNode(button); detachNode(button);
}, },
d: function destroy() { d() {
foo_handler.destroy(); foo_handler.destroy();
} }
}; };

@ -139,27 +139,23 @@ function create_main_fragment(component, ctx) {
var meta, meta_1; var meta, meta_1;
return { return {
c: function create() { c() {
meta = createElement("meta"); meta = createElement("meta");
meta_1 = createElement("meta"); meta_1 = createElement("meta");
this.h();
},
h: function hydrate() {
meta.name = "twitter:creator"; meta.name = "twitter:creator";
meta.content = "@sveltejs"; meta.content = "@sveltejs";
meta_1.name = "twitter:title"; meta_1.name = "twitter:title";
meta_1.content = "Svelte"; meta_1.content = "Svelte";
}, },
m: function mount(target, anchor) { m(target, anchor) {
appendNode(meta, document.head); appendNode(meta, document.head);
appendNode(meta_1, document.head); appendNode(meta_1, document.head);
}, },
p: noop, p: noop,
u: function unmount() { u() {
detachNode(meta); detachNode(meta);
detachNode(meta_1); detachNode(meta_1);
}, },

@ -5,27 +5,23 @@ function create_main_fragment(component, ctx) {
var meta, meta_1; var meta, meta_1;
return { return {
c: function create() { c() {
meta = createElement("meta"); meta = createElement("meta");
meta_1 = createElement("meta"); meta_1 = createElement("meta");
this.h();
},
h: function hydrate() {
meta.name = "twitter:creator"; meta.name = "twitter:creator";
meta.content = "@sveltejs"; meta.content = "@sveltejs";
meta_1.name = "twitter:title"; meta_1.name = "twitter:title";
meta_1.content = "Svelte"; meta_1.content = "Svelte";
}, },
m: function mount(target, anchor) { m(target, anchor) {
appendNode(meta, document.head); appendNode(meta, document.head);
appendNode(meta_1, document.head); appendNode(meta_1, document.head);
}, },
p: noop, p: noop,
u: function unmount() { u() {
detachNode(meta); detachNode(meta);
detachNode(meta_1); detachNode(meta_1);
}, },

@ -151,17 +151,17 @@ function create_main_fragment(component, ctx) {
var if_block = current_block_type(component, ctx); var if_block = current_block_type(component, ctx);
return { return {
c: function create() { c() {
if_block.c(); if_block.c();
if_block_anchor = createComment(); if_block_anchor = createComment();
}, },
m: function mount(target, anchor) { m(target, anchor) {
if_block.m(target, anchor); if_block.m(target, anchor);
insertNode(if_block_anchor, target, anchor); insertNode(if_block_anchor, target, anchor);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if (current_block_type !== (current_block_type = select_block_type(ctx))) { if (current_block_type !== (current_block_type = select_block_type(ctx))) {
if_block.u(); if_block.u();
if_block.d(); if_block.d();
@ -171,12 +171,12 @@ function create_main_fragment(component, ctx) {
} }
}, },
u: function unmount() { u() {
if_block.u(); if_block.u();
detachNode(if_block_anchor); detachNode(if_block_anchor);
}, },
d: function destroy$$1() { d() {
if_block.d(); if_block.d();
} }
}; };
@ -187,16 +187,16 @@ function create_if_block(component, ctx) {
var p; var p;
return { return {
c: function create() { c() {
p = createElement("p"); p = createElement("p");
p.textContent = "foo!"; p.textContent = "foo!";
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(p, target, anchor); insertNode(p, target, anchor);
}, },
u: function unmount() { u() {
detachNode(p); detachNode(p);
}, },
@ -209,16 +209,16 @@ function create_if_block_1(component, ctx) {
var p; var p;
return { return {
c: function create() { c() {
p = createElement("p"); p = createElement("p");
p.textContent = "not foo!"; p.textContent = "not foo!";
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(p, target, anchor); insertNode(p, target, anchor);
}, },
u: function unmount() { u() {
detachNode(p); detachNode(p);
}, },

@ -13,17 +13,17 @@ function create_main_fragment(component, ctx) {
var if_block = current_block_type(component, ctx); var if_block = current_block_type(component, ctx);
return { return {
c: function create() { c() {
if_block.c(); if_block.c();
if_block_anchor = createComment(); if_block_anchor = createComment();
}, },
m: function mount(target, anchor) { m(target, anchor) {
if_block.m(target, anchor); if_block.m(target, anchor);
insertNode(if_block_anchor, target, anchor); insertNode(if_block_anchor, target, anchor);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if (current_block_type !== (current_block_type = select_block_type(ctx))) { if (current_block_type !== (current_block_type = select_block_type(ctx))) {
if_block.u(); if_block.u();
if_block.d(); if_block.d();
@ -33,12 +33,12 @@ function create_main_fragment(component, ctx) {
} }
}, },
u: function unmount() { u() {
if_block.u(); if_block.u();
detachNode(if_block_anchor); detachNode(if_block_anchor);
}, },
d: function destroy() { d() {
if_block.d(); if_block.d();
} }
}; };
@ -49,16 +49,16 @@ function create_if_block(component, ctx) {
var p; var p;
return { return {
c: function create() { c() {
p = createElement("p"); p = createElement("p");
p.textContent = "foo!"; p.textContent = "foo!";
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(p, target, anchor); insertNode(p, target, anchor);
}, },
u: function unmount() { u() {
detachNode(p); detachNode(p);
}, },
@ -71,16 +71,16 @@ function create_if_block_1(component, ctx) {
var p; var p;
return { return {
c: function create() { c() {
p = createElement("p"); p = createElement("p");
p.textContent = "not foo!"; p.textContent = "not foo!";
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(p, target, anchor); insertNode(p, target, anchor);
}, },
u: function unmount() { u() {
detachNode(p); detachNode(p);
}, },

@ -145,17 +145,17 @@ function create_main_fragment(component, ctx) {
var if_block = (ctx.foo) && create_if_block(component, ctx); var if_block = (ctx.foo) && create_if_block(component, ctx);
return { return {
c: function create() { c() {
if (if_block) if_block.c(); if (if_block) if_block.c();
if_block_anchor = createComment(); if_block_anchor = createComment();
}, },
m: function mount(target, anchor) { m(target, anchor) {
if (if_block) if_block.m(target, anchor); if (if_block) if_block.m(target, anchor);
insertNode(if_block_anchor, target, anchor); insertNode(if_block_anchor, target, anchor);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if (ctx.foo) { if (ctx.foo) {
if (!if_block) { if (!if_block) {
if_block = create_if_block(component, ctx); if_block = create_if_block(component, ctx);
@ -169,12 +169,12 @@ function create_main_fragment(component, ctx) {
} }
}, },
u: function unmount() { u() {
if (if_block) if_block.u(); if (if_block) if_block.u();
detachNode(if_block_anchor); detachNode(if_block_anchor);
}, },
d: function destroy$$1() { d() {
if (if_block) if_block.d(); if (if_block) if_block.d();
} }
}; };
@ -185,16 +185,16 @@ function create_if_block(component, ctx) {
var p; var p;
return { return {
c: function create() { c() {
p = createElement("p"); p = createElement("p");
p.textContent = "foo!"; p.textContent = "foo!";
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(p, target, anchor); insertNode(p, target, anchor);
}, },
u: function unmount() { u() {
detachNode(p); detachNode(p);
}, },

@ -7,17 +7,17 @@ function create_main_fragment(component, ctx) {
var if_block = (ctx.foo) && create_if_block(component, ctx); var if_block = (ctx.foo) && create_if_block(component, ctx);
return { return {
c: function create() { c() {
if (if_block) if_block.c(); if (if_block) if_block.c();
if_block_anchor = createComment(); if_block_anchor = createComment();
}, },
m: function mount(target, anchor) { m(target, anchor) {
if (if_block) if_block.m(target, anchor); if (if_block) if_block.m(target, anchor);
insertNode(if_block_anchor, target, anchor); insertNode(if_block_anchor, target, anchor);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if (ctx.foo) { if (ctx.foo) {
if (!if_block) { if (!if_block) {
if_block = create_if_block(component, ctx); if_block = create_if_block(component, ctx);
@ -31,12 +31,12 @@ function create_main_fragment(component, ctx) {
} }
}, },
u: function unmount() { u() {
if (if_block) if_block.u(); if (if_block) if_block.u();
detachNode(if_block_anchor); detachNode(if_block_anchor);
}, },
d: function destroy() { d() {
if (if_block) if_block.d(); if (if_block) if_block.d();
} }
}; };
@ -47,16 +47,16 @@ function create_if_block(component, ctx) {
var p; var p;
return { return {
c: function create() { c() {
p = createElement("p"); p = createElement("p");
p.textContent = "foo!"; p.textContent = "foo!";
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(p, target, anchor); insertNode(p, target, anchor);
}, },
u: function unmount() { u() {
detachNode(p); detachNode(p);
}, },

@ -143,21 +143,17 @@ function create_main_fragment(component, ctx) {
var div; var div;
return { return {
c: function create() { c() {
div = createElement("div"); div = createElement("div");
this.h();
},
h: function hydrate() {
setStyle(div, "color", ctx.color); setStyle(div, "color", ctx.color);
setStyle(div, "transform", "translate(" + ctx.x + "px," + ctx.y + "px)"); setStyle(div, "transform", "translate(" + ctx.x + "px," + ctx.y + "px)");
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(div, target, anchor); insertNode(div, target, anchor);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if (changed.color) { if (changed.color) {
setStyle(div, "color", ctx.color); setStyle(div, "color", ctx.color);
} }
@ -167,7 +163,7 @@ function create_main_fragment(component, ctx) {
} }
}, },
u: function unmount() { u() {
detachNode(div); detachNode(div);
}, },

@ -5,21 +5,17 @@ function create_main_fragment(component, ctx) {
var div; var div;
return { return {
c: function create() { c() {
div = createElement("div"); div = createElement("div");
this.h();
},
h: function hydrate() {
setStyle(div, "color", ctx.color); setStyle(div, "color", ctx.color);
setStyle(div, "transform", "translate(" + ctx.x + "px," + ctx.y + "px)"); setStyle(div, "transform", "translate(" + ctx.x + "px," + ctx.y + "px)");
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(div, target, anchor); insertNode(div, target, anchor);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if (changed.color) { if (changed.color) {
setStyle(div, "color", ctx.color); setStyle(div, "color", ctx.color);
} }
@ -29,7 +25,7 @@ function create_main_fragment(component, ctx) {
} }
}, },
u: function unmount() { u() {
detachNode(div); detachNode(div);
}, },

@ -143,26 +143,22 @@ function create_main_fragment(component, ctx) {
var div; var div;
return { return {
c: function create() { c() {
div = createElement("div"); div = createElement("div");
this.h();
},
h: function hydrate() {
setStyle(div, "background", "url(data:image/png;base64," + ctx.data + ")"); setStyle(div, "background", "url(data:image/png;base64," + ctx.data + ")");
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(div, target, anchor); insertNode(div, target, anchor);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if (changed.data) { if (changed.data) {
setStyle(div, "background", "url(data:image/png;base64," + ctx.data + ")"); setStyle(div, "background", "url(data:image/png;base64," + ctx.data + ")");
} }
}, },
u: function unmount() { u() {
detachNode(div); detachNode(div);
}, },

@ -5,26 +5,22 @@ function create_main_fragment(component, ctx) {
var div; var div;
return { return {
c: function create() { c() {
div = createElement("div"); div = createElement("div");
this.h();
},
h: function hydrate() {
setStyle(div, "background", "url(data:image/png;base64," + ctx.data + ")"); setStyle(div, "background", "url(data:image/png;base64," + ctx.data + ")");
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(div, target, anchor); insertNode(div, target, anchor);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if (changed.data) { if (changed.data) {
setStyle(div, "background", "url(data:image/png;base64," + ctx.data + ")"); setStyle(div, "background", "url(data:image/png;base64," + ctx.data + ")");
} }
}, },
u: function unmount() { u() {
detachNode(div); detachNode(div);
}, },

@ -143,26 +143,22 @@ function create_main_fragment(component, ctx) {
var div; var div;
return { return {
c: function create() { c() {
div = createElement("div"); div = createElement("div");
this.h();
},
h: function hydrate() {
setStyle(div, "color", ctx.color); setStyle(div, "color", ctx.color);
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(div, target, anchor); insertNode(div, target, anchor);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if (changed.color) { if (changed.color) {
setStyle(div, "color", ctx.color); setStyle(div, "color", ctx.color);
} }
}, },
u: function unmount() { u() {
detachNode(div); detachNode(div);
}, },

@ -5,26 +5,22 @@ function create_main_fragment(component, ctx) {
var div; var div;
return { return {
c: function create() { c() {
div = createElement("div"); div = createElement("div");
this.h();
},
h: function hydrate() {
setStyle(div, "color", ctx.color); setStyle(div, "color", ctx.color);
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(div, target, anchor); insertNode(div, target, anchor);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if (changed.color) { if (changed.color) {
setStyle(div, "color", ctx.color); setStyle(div, "color", ctx.color);
} }
}, },
u: function unmount() { u() {
detachNode(div); detachNode(div);
}, },

@ -143,25 +143,21 @@ function create_main_fragment(component, ctx) {
var div, text, div_1, div_1_style_value; var div, text, div_1, div_1_style_value;
return { return {
c: function create() { c() {
div = createElement("div"); div = createElement("div");
text = createText("\n"); text = createText("\n");
div_1 = createElement("div"); div_1 = createElement("div");
this.h();
},
h: function hydrate() {
div.style.cssText = ctx.style; div.style.cssText = ctx.style;
div_1.style.cssText = div_1_style_value = "" + ctx.key + ": " + ctx.value; div_1.style.cssText = div_1_style_value = "" + ctx.key + ": " + ctx.value;
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(div, target, anchor); insertNode(div, target, anchor);
insertNode(text, target, anchor); insertNode(text, target, anchor);
insertNode(div_1, target, anchor); insertNode(div_1, target, anchor);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if (changed.style) { if (changed.style) {
div.style.cssText = ctx.style; div.style.cssText = ctx.style;
} }
@ -171,7 +167,7 @@ function create_main_fragment(component, ctx) {
} }
}, },
u: function unmount() { u() {
detachNode(div); detachNode(div);
detachNode(text); detachNode(text);
detachNode(div_1); detachNode(div_1);

@ -5,25 +5,21 @@ function create_main_fragment(component, ctx) {
var div, text, div_1, div_1_style_value; var div, text, div_1, div_1_style_value;
return { return {
c: function create() { c() {
div = createElement("div"); div = createElement("div");
text = createText("\n"); text = createText("\n");
div_1 = createElement("div"); div_1 = createElement("div");
this.h();
},
h: function hydrate() {
div.style.cssText = ctx.style; div.style.cssText = ctx.style;
div_1.style.cssText = div_1_style_value = "" + ctx.key + ": " + ctx.value; div_1.style.cssText = div_1_style_value = "" + ctx.key + ": " + ctx.value;
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(div, target, anchor); insertNode(div, target, anchor);
insertNode(text, target, anchor); insertNode(text, target, anchor);
insertNode(div_1, target, anchor); insertNode(div_1, target, anchor);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if (changed.style) { if (changed.style) {
div.style.cssText = ctx.style; div.style.cssText = ctx.style;
} }
@ -33,7 +29,7 @@ function create_main_fragment(component, ctx) {
} }
}, },
u: function unmount() { u() {
detachNode(div); detachNode(div);
detachNode(text); detachNode(text);
detachNode(div_1); detachNode(div_1);

@ -155,31 +155,27 @@ function create_main_fragment(component, ctx) {
} }
return { return {
c: function create() { c() {
input = createElement("input"); input = createElement("input");
this.h();
},
h: function hydrate() {
addListener(input, "change", input_change_handler); addListener(input, "change", input_change_handler);
setAttribute(input, "type", "checkbox"); setAttribute(input, "type", "checkbox");
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(input, target, anchor); insertNode(input, target, anchor);
input.checked = ctx.foo; input.checked = ctx.foo;
}, },
p: function update(changed, ctx) { p(changed, ctx) {
input.checked = ctx.foo; input.checked = ctx.foo;
}, },
u: function unmount() { u() {
detachNode(input); detachNode(input);
}, },
d: function destroy$$1() { d() {
removeListener(input, "change", input_change_handler); removeListener(input, "change", input_change_handler);
} }
}; };

@ -9,31 +9,27 @@ function create_main_fragment(component, ctx) {
} }
return { return {
c: function create() { c() {
input = createElement("input"); input = createElement("input");
this.h();
},
h: function hydrate() {
addListener(input, "change", input_change_handler); addListener(input, "change", input_change_handler);
setAttribute(input, "type", "checkbox"); setAttribute(input, "type", "checkbox");
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(input, target, anchor); insertNode(input, target, anchor);
input.checked = ctx.foo; input.checked = ctx.foo;
}, },
p: function update(changed, ctx) { p(changed, ctx) {
input.checked = ctx.foo; input.checked = ctx.foo;
}, },
u: function unmount() { u() {
detachNode(input); detachNode(input);
}, },
d: function destroy() { d() {
removeListener(input, "change", input_change_handler); removeListener(input, "change", input_change_handler);
} }
}; };

@ -145,22 +145,18 @@ function create_main_fragment(component, ctx) {
var input; var input;
return { return {
c: function create() { c() {
input = createElement("input"); input = createElement("input");
this.h();
},
h: function hydrate() {
setInputType(input, "search"); setInputType(input, "search");
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(input, target, anchor); insertNode(input, target, anchor);
}, },
p: noop, p: noop,
u: function unmount() { u() {
detachNode(input); detachNode(input);
}, },

@ -5,22 +5,18 @@ function create_main_fragment(component, ctx) {
var input; var input;
return { return {
c: function create() { c() {
input = createElement("input"); input = createElement("input");
this.h();
},
h: function hydrate() {
setInputType(input, "search"); setInputType(input, "search");
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(input, target, anchor); insertNode(input, target, anchor);
}, },
p: noop, p: noop,
u: function unmount() { u() {
detachNode(input); detachNode(input);
}, },

@ -187,12 +187,8 @@ function create_main_fragment(component, ctx) {
} }
return { return {
c: function create() { c() {
audio = createElement("audio"); audio = createElement("audio");
this.h();
},
h: function hydrate() {
addListener(audio, "timeupdate", audio_timeupdate_handler); addListener(audio, "timeupdate", audio_timeupdate_handler);
if (!('played' in ctx && 'currentTime' in ctx)) component.root._beforecreate.push(audio_timeupdate_handler); if (!('played' in ctx && 'currentTime' in ctx)) component.root._beforecreate.push(audio_timeupdate_handler);
addListener(audio, "durationchange", audio_durationchange_handler); addListener(audio, "durationchange", audio_durationchange_handler);
@ -206,23 +202,23 @@ function create_main_fragment(component, ctx) {
addListener(audio, "volumechange", audio_volumechange_handler); addListener(audio, "volumechange", audio_volumechange_handler);
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(audio, target, anchor); insertNode(audio, target, anchor);
audio.volume = ctx.volume; audio.volume = ctx.volume;
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if (!audio_updating && !isNaN(ctx.currentTime )) audio.currentTime = ctx.currentTime ; if (!audio_updating && !isNaN(ctx.currentTime )) audio.currentTime = ctx.currentTime ;
if (!audio_updating && audio_is_paused !== (audio_is_paused = ctx.paused )) audio[audio_is_paused ? "pause" : "play"](); if (!audio_updating && audio_is_paused !== (audio_is_paused = ctx.paused )) audio[audio_is_paused ? "pause" : "play"]();
if (!audio_updating && !isNaN(ctx.volume)) audio.volume = ctx.volume; if (!audio_updating && !isNaN(ctx.volume)) audio.volume = ctx.volume;
}, },
u: function unmount() { u() {
detachNode(audio); detachNode(audio);
}, },
d: function destroy$$1() { d() {
removeListener(audio, "timeupdate", audio_timeupdate_handler); removeListener(audio, "timeupdate", audio_timeupdate_handler);
removeListener(audio, "durationchange", audio_durationchange_handler); removeListener(audio, "durationchange", audio_durationchange_handler);
removeListener(audio, "play", audio_play_pause_handler); removeListener(audio, "play", audio_play_pause_handler);

@ -37,12 +37,8 @@ function create_main_fragment(component, ctx) {
} }
return { return {
c: function create() { c() {
audio = createElement("audio"); audio = createElement("audio");
this.h();
},
h: function hydrate() {
addListener(audio, "timeupdate", audio_timeupdate_handler); addListener(audio, "timeupdate", audio_timeupdate_handler);
if (!('played' in ctx && 'currentTime' in ctx)) component.root._beforecreate.push(audio_timeupdate_handler); if (!('played' in ctx && 'currentTime' in ctx)) component.root._beforecreate.push(audio_timeupdate_handler);
addListener(audio, "durationchange", audio_durationchange_handler); addListener(audio, "durationchange", audio_durationchange_handler);
@ -56,23 +52,23 @@ function create_main_fragment(component, ctx) {
addListener(audio, "volumechange", audio_volumechange_handler); addListener(audio, "volumechange", audio_volumechange_handler);
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(audio, target, anchor); insertNode(audio, target, anchor);
audio.volume = ctx.volume; audio.volume = ctx.volume;
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if (!audio_updating && !isNaN(ctx.currentTime )) audio.currentTime = ctx.currentTime ; if (!audio_updating && !isNaN(ctx.currentTime )) audio.currentTime = ctx.currentTime ;
if (!audio_updating && audio_is_paused !== (audio_is_paused = ctx.paused )) audio[audio_is_paused ? "pause" : "play"](); if (!audio_updating && audio_is_paused !== (audio_is_paused = ctx.paused )) audio[audio_is_paused ? "pause" : "play"]();
if (!audio_updating && !isNaN(ctx.volume)) audio.volume = ctx.volume; if (!audio_updating && !isNaN(ctx.volume)) audio.volume = ctx.volume;
}, },
u: function unmount() { u() {
detachNode(audio); detachNode(audio);
}, },
d: function destroy() { d() {
removeListener(audio, "timeupdate", audio_timeupdate_handler); removeListener(audio, "timeupdate", audio_timeupdate_handler);
removeListener(audio, "durationchange", audio_durationchange_handler); removeListener(audio, "durationchange", audio_durationchange_handler);
removeListener(audio, "play", audio_play_pause_handler); removeListener(audio, "play", audio_play_pause_handler);

@ -151,13 +151,13 @@ function create_main_fragment(component, ctx) {
}); });
return { return {
c: function create() { c() {
imported._fragment.c(); imported._fragment.c();
text = createText("\n"); text = createText("\n");
nonimported._fragment.c(); nonimported._fragment.c();
}, },
m: function mount(target, anchor) { m(target, anchor) {
imported._mount(target, anchor); imported._mount(target, anchor);
insertNode(text, target, anchor); insertNode(text, target, anchor);
nonimported._mount(target, anchor); nonimported._mount(target, anchor);
@ -165,13 +165,13 @@ function create_main_fragment(component, ctx) {
p: noop, p: noop,
u: function unmount() { u() {
imported._unmount(); imported._unmount();
detachNode(text); detachNode(text);
nonimported._unmount(); nonimported._unmount();
}, },
d: function destroy$$1() { d() {
imported.destroy(false); imported.destroy(false);
nonimported.destroy(false); nonimported.destroy(false);
} }

@ -16,13 +16,13 @@ function create_main_fragment(component, ctx) {
}); });
return { return {
c: function create() { c() {
imported._fragment.c(); imported._fragment.c();
text = createText("\n"); text = createText("\n");
nonimported._fragment.c(); nonimported._fragment.c();
}, },
m: function mount(target, anchor) { m(target, anchor) {
imported._mount(target, anchor); imported._mount(target, anchor);
insertNode(text, target, anchor); insertNode(text, target, anchor);
nonimported._mount(target, anchor); nonimported._mount(target, anchor);
@ -30,13 +30,13 @@ function create_main_fragment(component, ctx) {
p: noop, p: noop,
u: function unmount() { u() {
imported._unmount(); imported._unmount();
detachNode(text); detachNode(text);
nonimported._unmount(); nonimported._unmount();
}, },
d: function destroy() { d() {
imported.destroy(false); imported.destroy(false);
nonimported.destroy(false); nonimported.destroy(false);
} }

@ -147,13 +147,13 @@ function create_main_fragment(component, ctx) {
var svg, title, text; var svg, title, text;
return { return {
c: function create() { c() {
svg = createSvgElement("svg"); svg = createSvgElement("svg");
title = createSvgElement("title"); title = createSvgElement("title");
text = createText("a title"); text = createText("a title");
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(svg, target, anchor); insertNode(svg, target, anchor);
appendNode(title, svg); appendNode(title, svg);
appendNode(text, title); appendNode(text, title);
@ -161,7 +161,7 @@ function create_main_fragment(component, ctx) {
p: noop, p: noop,
u: function unmount() { u() {
detachNode(svg); detachNode(svg);
}, },

@ -5,13 +5,13 @@ function create_main_fragment(component, ctx) {
var svg, title, text; var svg, title, text;
return { return {
c: function create() { c() {
svg = createSvgElement("svg"); svg = createSvgElement("svg");
title = createSvgElement("title"); title = createSvgElement("title");
text = createText("a title"); text = createText("a title");
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(svg, target, anchor); insertNode(svg, target, anchor);
appendNode(title, svg); appendNode(title, svg);
appendNode(text, title); appendNode(text, title);
@ -19,7 +19,7 @@ function create_main_fragment(component, ctx) {
p: noop, p: noop,
u: function unmount() { u() {
detachNode(svg); detachNode(svg);
}, },

@ -133,7 +133,7 @@ function create_main_fragment(component, ctx) {
m: noop, m: noop,
p: function update(changed, ctx) { p(changed, ctx) {
if ((changed.custom) && title_value !== (title_value = "a " + ctx.custom + " title")) { if ((changed.custom) && title_value !== (title_value = "a " + ctx.custom + " title")) {
document.title = title_value; document.title = title_value;
} }

@ -11,7 +11,7 @@ function create_main_fragment(component, ctx) {
m: noop, m: noop,
p: function update(changed, ctx) { p(changed, ctx) {
if ((changed.custom) && title_value !== (title_value = "a " + ctx.custom + " title")) { if ((changed.custom) && title_value !== (title_value = "a " + ctx.custom + " title")) {
document.title = title_value; document.title = title_value;
} }

@ -161,7 +161,7 @@ function create_main_fragment(component, ctx) {
var if_block_4 = (ctx.e) && create_if_block_4(component, ctx); var if_block_4 = (ctx.e) && create_if_block_4(component, ctx);
return { return {
c: function create() { c() {
div = createElement("div"); div = createElement("div");
if (if_block) if_block.c(); if (if_block) if_block.c();
text = createText("\n\n\t"); text = createText("\n\n\t");
@ -181,7 +181,7 @@ function create_main_fragment(component, ctx) {
if_block_4_anchor = createComment(); if_block_4_anchor = createComment();
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(div, target, anchor); insertNode(div, target, anchor);
if (if_block) if_block.m(div, null); if (if_block) if_block.m(div, null);
appendNode(text, div); appendNode(text, div);
@ -199,7 +199,7 @@ function create_main_fragment(component, ctx) {
insertNode(if_block_4_anchor, target, anchor); insertNode(if_block_4_anchor, target, anchor);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if (ctx.a) { if (ctx.a) {
if (!if_block) { if (!if_block) {
if_block = create_if_block(component, ctx); if_block = create_if_block(component, ctx);
@ -261,7 +261,7 @@ function create_main_fragment(component, ctx) {
} }
}, },
u: function unmount() { u() {
detachNode(div); detachNode(div);
if (if_block) if_block.u(); if (if_block) if_block.u();
if (if_block_1) if_block_1.u(); if (if_block_1) if_block_1.u();
@ -272,7 +272,7 @@ function create_main_fragment(component, ctx) {
detachNode(if_block_4_anchor); detachNode(if_block_4_anchor);
}, },
d: function destroy$$1() { d() {
if (if_block) if_block.d(); if (if_block) if_block.d();
if (if_block_1) if_block_1.d(); if (if_block_1) if_block_1.d();
if (if_block_2) if_block_2.d(); if (if_block_2) if_block_2.d();
@ -287,16 +287,16 @@ function create_if_block(component, ctx) {
var p; var p;
return { return {
c: function create() { c() {
p = createElement("p"); p = createElement("p");
p.textContent = "a"; p.textContent = "a";
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(p, target, anchor); insertNode(p, target, anchor);
}, },
u: function unmount() { u() {
detachNode(p); detachNode(p);
}, },
@ -309,16 +309,16 @@ function create_if_block_1(component, ctx) {
var p; var p;
return { return {
c: function create() { c() {
p = createElement("p"); p = createElement("p");
p.textContent = "b"; p.textContent = "b";
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(p, target, anchor); insertNode(p, target, anchor);
}, },
u: function unmount() { u() {
detachNode(p); detachNode(p);
}, },
@ -331,16 +331,16 @@ function create_if_block_2(component, ctx) {
var p; var p;
return { return {
c: function create() { c() {
p = createElement("p"); p = createElement("p");
p.textContent = "c"; p.textContent = "c";
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(p, target, anchor); insertNode(p, target, anchor);
}, },
u: function unmount() { u() {
detachNode(p); detachNode(p);
}, },
@ -353,16 +353,16 @@ function create_if_block_3(component, ctx) {
var p; var p;
return { return {
c: function create() { c() {
p = createElement("p"); p = createElement("p");
p.textContent = "d"; p.textContent = "d";
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(p, target, anchor); insertNode(p, target, anchor);
}, },
u: function unmount() { u() {
detachNode(p); detachNode(p);
}, },
@ -375,16 +375,16 @@ function create_if_block_4(component, ctx) {
var p; var p;
return { return {
c: function create() { c() {
p = createElement("p"); p = createElement("p");
p.textContent = "e"; p.textContent = "e";
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(p, target, anchor); insertNode(p, target, anchor);
}, },
u: function unmount() { u() {
detachNode(p); detachNode(p);
}, },

@ -15,7 +15,7 @@ function create_main_fragment(component, ctx) {
var if_block_4 = (ctx.e) && create_if_block_4(component, ctx); var if_block_4 = (ctx.e) && create_if_block_4(component, ctx);
return { return {
c: function create() { c() {
div = createElement("div"); div = createElement("div");
if (if_block) if_block.c(); if (if_block) if_block.c();
text = createText("\n\n\t"); text = createText("\n\n\t");
@ -35,7 +35,7 @@ function create_main_fragment(component, ctx) {
if_block_4_anchor = createComment(); if_block_4_anchor = createComment();
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(div, target, anchor); insertNode(div, target, anchor);
if (if_block) if_block.m(div, null); if (if_block) if_block.m(div, null);
appendNode(text, div); appendNode(text, div);
@ -53,7 +53,7 @@ function create_main_fragment(component, ctx) {
insertNode(if_block_4_anchor, target, anchor); insertNode(if_block_4_anchor, target, anchor);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if (ctx.a) { if (ctx.a) {
if (!if_block) { if (!if_block) {
if_block = create_if_block(component, ctx); if_block = create_if_block(component, ctx);
@ -115,7 +115,7 @@ function create_main_fragment(component, ctx) {
} }
}, },
u: function unmount() { u() {
detachNode(div); detachNode(div);
if (if_block) if_block.u(); if (if_block) if_block.u();
if (if_block_1) if_block_1.u(); if (if_block_1) if_block_1.u();
@ -126,7 +126,7 @@ function create_main_fragment(component, ctx) {
detachNode(if_block_4_anchor); detachNode(if_block_4_anchor);
}, },
d: function destroy() { d() {
if (if_block) if_block.d(); if (if_block) if_block.d();
if (if_block_1) if_block_1.d(); if (if_block_1) if_block_1.d();
if (if_block_2) if_block_2.d(); if (if_block_2) if_block_2.d();
@ -141,16 +141,16 @@ function create_if_block(component, ctx) {
var p; var p;
return { return {
c: function create() { c() {
p = createElement("p"); p = createElement("p");
p.textContent = "a"; p.textContent = "a";
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(p, target, anchor); insertNode(p, target, anchor);
}, },
u: function unmount() { u() {
detachNode(p); detachNode(p);
}, },
@ -163,16 +163,16 @@ function create_if_block_1(component, ctx) {
var p; var p;
return { return {
c: function create() { c() {
p = createElement("p"); p = createElement("p");
p.textContent = "b"; p.textContent = "b";
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(p, target, anchor); insertNode(p, target, anchor);
}, },
u: function unmount() { u() {
detachNode(p); detachNode(p);
}, },
@ -185,16 +185,16 @@ function create_if_block_2(component, ctx) {
var p; var p;
return { return {
c: function create() { c() {
p = createElement("p"); p = createElement("p");
p.textContent = "c"; p.textContent = "c";
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(p, target, anchor); insertNode(p, target, anchor);
}, },
u: function unmount() { u() {
detachNode(p); detachNode(p);
}, },
@ -207,16 +207,16 @@ function create_if_block_3(component, ctx) {
var p; var p;
return { return {
c: function create() { c() {
p = createElement("p"); p = createElement("p");
p.textContent = "d"; p.textContent = "d";
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(p, target, anchor); insertNode(p, target, anchor);
}, },
u: function unmount() { u() {
detachNode(p); detachNode(p);
}, },
@ -229,16 +229,16 @@ function create_if_block_4(component, ctx) {
var p; var p;
return { return {
c: function create() { c() {
p = createElement("p"); p = createElement("p");
p.textContent = "e"; p.textContent = "e";
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(p, target, anchor); insertNode(p, target, anchor);
}, },
u: function unmount() { u() {
detachNode(p); detachNode(p);
}, },

@ -167,29 +167,29 @@ function create_main_fragment(component, ctx) {
}); });
return { return {
c: function create() { c() {
p = createElement("p"); p = createElement("p");
text = createText("scrolled to "); text = createText("scrolled to ");
text_1 = createText(ctx.y); text_1 = createText(ctx.y);
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(p, target, anchor); insertNode(p, target, anchor);
appendNode(text, p); appendNode(text, p);
appendNode(text_1, p); appendNode(text_1, p);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if (changed.y) { if (changed.y) {
text_1.data = ctx.y; text_1.data = ctx.y;
} }
}, },
u: function unmount() { u() {
detachNode(p); detachNode(p);
}, },
d: function destroy$$1() { d() {
window.removeEventListener("scroll", onwindowscroll); window.removeEventListener("scroll", onwindowscroll);
} }
}; };

@ -25,29 +25,29 @@ function create_main_fragment(component, ctx) {
}); });
return { return {
c: function create() { c() {
p = createElement("p"); p = createElement("p");
text = createText("scrolled to "); text = createText("scrolled to ");
text_1 = createText(ctx.y); text_1 = createText(ctx.y);
}, },
m: function mount(target, anchor) { m(target, anchor) {
insertNode(p, target, anchor); insertNode(p, target, anchor);
appendNode(text, p); appendNode(text, p);
appendNode(text_1, p); appendNode(text_1, p);
}, },
p: function update(changed, ctx) { p(changed, ctx) {
if (changed.y) { if (changed.y) {
text_1.data = ctx.y; text_1.data = ctx.y;
} }
}, },
u: function unmount() { u() {
detachNode(p); detachNode(p);
}, },
d: function destroy() { d() {
window.removeEventListener("scroll", onwindowscroll); window.removeEventListener("scroll", onwindowscroll);
} }
}; };

Loading…
Cancel
Save