[fix] Exclude generated code from code coverage instrumentation

pull/8226/head
AriPerkkio 4 years ago
parent 967e9f51ff
commit d4aaa47fc4

@ -319,6 +319,7 @@ export default class Block {
properties.update = x`function #update(${ctx}, ${dirty}) { properties.update = x`function #update(${ctx}, ${dirty}) {
${this.maintain_context && b`#ctx = ${ctx};`} ${this.maintain_context && b`#ctx = ${ctx};`}
/* istanbul ignore next */
${this.chunks.update} ${this.chunks.update}
}`; }`;
} }

@ -31,6 +31,7 @@ function create_fragment(ctx) {
} }
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (foo_action && is_function(foo_action.update) && dirty & /*bar*/ 1) foo_action.update.call(null, /*foo_function*/ ctx[1]); if (foo_action && is_function(foo_action.update) && dirty & /*bar*/ 1) foo_action.update.call(null, /*foo_function*/ ctx[1]);
}, },
i: noop, i: noop,

@ -30,6 +30,7 @@ function create_fragment(ctx) {
} }
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*open*/ 1) { if (dirty & /*open*/ 1) {
details.open = /*open*/ ctx[0]; details.open = /*open*/ ctx[0];
} }

@ -43,6 +43,7 @@ function create_fragment(ctx) {
} }
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*foo*/ 1) set_data(t0, /*foo*/ ctx[0]); if (dirty & /*foo*/ 1) set_data(t0, /*foo*/ ctx[0]);
if (dirty & /*foo*/ 1 && input.value !== /*foo*/ ctx[0]) { if (dirty & /*foo*/ 1 && input.value !== /*foo*/ ctx[0]) {

@ -68,7 +68,9 @@ function create_fragment(ctx) {
append_dev(p, t10); append_dev(p, t10);
}, },
p: function update(ctx, [dirty]) { p: function update(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*prop*/ 1) set_data_dev(t0, /*prop*/ ctx[0]); if (dirty & /*prop*/ 1) set_data_dev(t0, /*prop*/ ctx[0]);
if (dirty & /*realName*/ 2) set_data_dev(t2, /*realName*/ ctx[1]); if (dirty & /*realName*/ 2) set_data_dev(t2, /*realName*/ ctx[1]);
if (dirty & /*$prop*/ 4) set_data_dev(t8, /*$prop*/ ctx[2]); if (dirty & /*$prop*/ 4) set_data_dev(t8, /*$prop*/ ctx[2]);
}, },

@ -53,6 +53,7 @@ function create_fragment(ctx) {
current = true; current = true;
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (!current || dirty & /*size, theme, $$restProps*/ 7 && div_class_value !== (div_class_value = "button button--size--" + /*size*/ ctx[0] + " button--theme--" + /*theme*/ ctx[1] + " " + (/*$$restProps*/ ctx[2].class || ''))) { if (!current || dirty & /*size, theme, $$restProps*/ 7 && div_class_value !== (div_class_value = "button button--size--" + /*size*/ ctx[0] + " button--theme--" + /*theme*/ ctx[1] + " " + (/*$$restProps*/ ctx[2].class || ''))) {
attr(div, "class", div_class_value); attr(div, "class", div_class_value);
} }

@ -33,6 +33,7 @@ function create_fragment(ctx) {
append(p, t); append(p, t);
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*foo*/ 1) set_data(t, /*foo*/ ctx[0]); if (dirty & /*foo*/ 1) set_data(t, /*foo*/ ctx[0]);
}, },
i: noop, i: noop,

@ -54,7 +54,9 @@ function create_fragment(ctx) {
} }
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
const bar_changes = {}; const bar_changes = {};
if (dirty & /*z*/ 1) bar_changes.x = /*z*/ ctx[0]; if (dirty & /*z*/ 1) bar_changes.x = /*z*/ ctx[0];
bar.$set(bar_changes); bar.$set(bar_changes);

@ -29,6 +29,7 @@ function create_fragment(ctx) {
append(h1, t); append(h1, t);
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*$foo*/ 1) set_data(t, /*$foo*/ ctx[0]); if (dirty & /*$foo*/ 1) set_data(t, /*$foo*/ ctx[0]);
}, },
i: noop, i: noop,

@ -45,6 +45,7 @@ function create_fragment(ctx) {
} }
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*$foo*/ 2) set_data(t0, /*$foo*/ ctx[1]); if (dirty & /*$foo*/ 2) set_data(t0, /*$foo*/ ctx[1]);
}, },
i: noop, i: noop,

@ -34,6 +34,7 @@ function create_fragment(ctx) {
append(h1, t2); append(h1, t2);
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*name*/ 1) set_data(t1, /*name*/ ctx[0]); if (dirty & /*name*/ 1) set_data(t1, /*name*/ ctx[0]);
}, },
i: noop, i: noop,

@ -30,6 +30,7 @@ function create_fragment(ctx) {
insert(target, div1, anchor); insert(target, div1, anchor);
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*bar*/ 1) { if (dirty & /*bar*/ 1) {
attr(div1, "data-foo", /*bar*/ ctx[0]); attr(div1, "data-foo", /*bar*/ ctx[0]);
} }

@ -46,7 +46,9 @@ function create_fragment(ctx) {
insert_dev(target, t3, anchor); insert_dev(target, t3, anchor);
}, },
p: function update(ctx, [dirty]) { p: function update(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*name*/ 1) set_data_dev(t1, /*name*/ ctx[0]); if (dirty & /*name*/ 1) set_data_dev(t1, /*name*/ ctx[0]);
debugger; debugger;
}, },
i: noop, i: noop,

@ -56,6 +56,7 @@ function create_each_block(ctx) {
insert_dev(target, t1, anchor); insert_dev(target, t1, anchor);
}, },
p: function update(ctx, dirty) { p: function update(ctx, dirty) {
/* istanbul ignore next */
if (dirty & /*things*/ 1 && t0_value !== (t0_value = /*thing*/ ctx[4].name + "")) set_data_dev(t0, t0_value); if (dirty & /*things*/ 1 && t0_value !== (t0_value = /*thing*/ ctx[4].name + "")) set_data_dev(t0, t0_value);
if (dirty & /*foo, bar, baz, things*/ 15) { if (dirty & /*foo, bar, baz, things*/ 15) {
@ -123,6 +124,7 @@ function create_fragment(ctx) {
append_dev(p, t2); append_dev(p, t2);
}, },
p: function update(ctx, [dirty]) { p: function update(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*things*/ 1) { if (dirty & /*things*/ 1) {
each_value = /*things*/ ctx[0]; each_value = /*things*/ ctx[0];
validate_each_argument(each_value); validate_each_argument(each_value);

@ -53,6 +53,7 @@ function create_each_block(ctx) {
insert_dev(target, t1, anchor); insert_dev(target, t1, anchor);
}, },
p: function update(ctx, dirty) { p: function update(ctx, dirty) {
/* istanbul ignore next */
if (dirty & /*things*/ 1 && t0_value !== (t0_value = /*thing*/ ctx[2].name + "")) set_data_dev(t0, t0_value); if (dirty & /*things*/ 1 && t0_value !== (t0_value = /*thing*/ ctx[2].name + "")) set_data_dev(t0, t0_value);
if (dirty & /*foo*/ 2) { if (dirty & /*foo*/ 2) {
@ -117,6 +118,7 @@ function create_fragment(ctx) {
append_dev(p, t2); append_dev(p, t2);
}, },
p: function update(ctx, [dirty]) { p: function update(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*things*/ 1) { if (dirty & /*things*/ 1) {
each_value = /*things*/ ctx[0]; each_value = /*things*/ ctx[0];
validate_each_argument(each_value); validate_each_argument(each_value);

@ -25,6 +25,7 @@ function create_fragment(ctx) {
}, },
m: noop, m: noop,
p: function update(ctx, [dirty]) { p: function update(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*obj, kobzol*/ 3) { if (dirty & /*obj, kobzol*/ 3) {
const obj = /*obj*/ ctx[0]; const obj = /*obj*/ ctx[0];
const kobzol = /*kobzol*/ ctx[1]; const kobzol = /*kobzol*/ ctx[1];

@ -92,6 +92,7 @@ function create_fragment(ctx) {
insert_dev(target, each_1_anchor, anchor); insert_dev(target, each_1_anchor, anchor);
}, },
p: function update(ctx, [dirty]) { p: function update(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*things*/ 0) { if (dirty & /*things*/ 0) {
each_value = things; each_value = things;
validate_each_argument(each_value); validate_each_argument(each_value);

@ -36,6 +36,7 @@ function create_each_block(ctx) {
append(span, t); append(span, t);
}, },
p(ctx, dirty) { p(ctx, dirty) {
/* istanbul ignore next */
if (dirty & /*createElement*/ 1 && t_value !== (t_value = /*node*/ ctx[1] + "")) set_data(t, t_value); if (dirty & /*createElement*/ 1 && t_value !== (t_value = /*node*/ ctx[1] + "")) set_data(t, t_value);
}, },
d(detaching) { d(detaching) {
@ -69,6 +70,7 @@ function create_fragment(ctx) {
insert(target, each_1_anchor, anchor); insert(target, each_1_anchor, anchor);
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*createElement*/ 1) { if (dirty & /*createElement*/ 1) {
each_value = /*createElement*/ ctx[0]; each_value = /*createElement*/ ctx[0];
let i; let i;

@ -43,7 +43,9 @@ function create_fragment(ctx) {
append_dev(p, t2); append_dev(p, t2);
}, },
p: function update(ctx, [dirty]) { p: function update(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*foo*/ 1 && t0_value !== (t0_value = Math.max(0, /*foo*/ ctx[0]) + "")) set_data_dev(t0, t0_value); if (dirty & /*foo*/ 1 && t0_value !== (t0_value = Math.max(0, /*foo*/ ctx[0]) + "")) set_data_dev(t0, t0_value);
if (dirty & /*bar*/ 2) set_data_dev(t2, /*bar*/ ctx[1]); if (dirty & /*bar*/ 2) set_data_dev(t2, /*bar*/ ctx[1]);
}, },
i: noop, i: noop,

@ -36,6 +36,7 @@ function create_each_block(ctx) {
append(span, t); append(span, t);
}, },
p(ctx, dirty) { p(ctx, dirty) {
/* istanbul ignore next */
if (dirty & /*a, b, c, d, e*/ 31 && t_value !== (t_value = /*num*/ ctx[5] + "")) set_data(t, t_value); if (dirty & /*a, b, c, d, e*/ 31 && t_value !== (t_value = /*num*/ ctx[5] + "")) set_data(t, t_value);
}, },
d(detaching) { d(detaching) {
@ -69,6 +70,7 @@ function create_fragment(ctx) {
insert(target, each_1_anchor, anchor); insert(target, each_1_anchor, anchor);
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*a, b, c, d, e*/ 31) { if (dirty & /*a, b, c, d, e*/ 31) {
each_value = [/*a*/ ctx[0], /*b*/ ctx[1], /*c*/ ctx[2], /*d*/ ctx[3], /*e*/ ctx[4]]; each_value = [/*a*/ ctx[0], /*b*/ ctx[1], /*c*/ ctx[2], /*d*/ ctx[3], /*e*/ ctx[4]];
let i; let i;

@ -71,7 +71,9 @@ function create_each_block(ctx) {
html_tag.m(raw_value, div); html_tag.m(raw_value, div);
}, },
p(ctx, dirty) { p(ctx, dirty) {
/* istanbul ignore next */
if (dirty & /*comments*/ 1 && t2_value !== (t2_value = /*comment*/ ctx[4].author + "")) set_data(t2, t2_value); if (dirty & /*comments*/ 1 && t2_value !== (t2_value = /*comment*/ ctx[4].author + "")) set_data(t2, t2_value);
if (dirty & /*elapsed, comments, time*/ 7 && t4_value !== (t4_value = /*elapsed*/ ctx[1](/*comment*/ ctx[4].time, /*time*/ ctx[2]) + "")) set_data(t4, t4_value); if (dirty & /*elapsed, comments, time*/ 7 && t4_value !== (t4_value = /*elapsed*/ ctx[1](/*comment*/ ctx[4].time, /*time*/ ctx[2]) + "")) set_data(t4, t4_value);
if (dirty & /*comments*/ 1 && raw_value !== (raw_value = /*comment*/ ctx[4].html + "")) html_tag.p(raw_value); if (dirty & /*comments*/ 1 && raw_value !== (raw_value = /*comment*/ ctx[4].html + "")) html_tag.p(raw_value);
}, },
@ -112,6 +114,7 @@ function create_fragment(ctx) {
append(p, t1); append(p, t1);
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*comments, elapsed, time*/ 7) { if (dirty & /*comments, elapsed, time*/ 7) {
each_value = /*comments*/ ctx[0]; each_value = /*comments*/ ctx[0];
let i; let i;

@ -45,6 +45,8 @@ function create_each_block(key_1, ctx) {
}, },
p(new_ctx, dirty) { p(new_ctx, dirty) {
ctx = new_ctx; ctx = new_ctx;
/* istanbul ignore next */
if (dirty & /*things*/ 1 && t_value !== (t_value = /*thing*/ ctx[1].name + "")) set_data(t, t_value); if (dirty & /*things*/ 1 && t_value !== (t_value = /*thing*/ ctx[1].name + "")) set_data(t, t_value);
}, },
r() { r() {
@ -93,6 +95,7 @@ function create_fragment(ctx) {
insert(target, each_1_anchor, anchor); insert(target, each_1_anchor, anchor);
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*things*/ 1) { if (dirty & /*things*/ 1) {
each_value = /*things*/ ctx[0]; each_value = /*things*/ ctx[0];
for (let i = 0; i < each_blocks.length; i += 1) each_blocks[i].r(); for (let i = 0; i < each_blocks.length; i += 1) each_blocks[i].r();

@ -41,6 +41,8 @@ function create_each_block(key_1, ctx) {
}, },
p(new_ctx, dirty) { p(new_ctx, dirty) {
ctx = new_ctx; ctx = new_ctx;
/* istanbul ignore next */
if (dirty & /*things*/ 1 && t_value !== (t_value = /*thing*/ ctx[1].name + "")) set_data(t, t_value); if (dirty & /*things*/ 1 && t_value !== (t_value = /*thing*/ ctx[1].name + "")) set_data(t, t_value);
}, },
d(detaching) { d(detaching) {
@ -78,6 +80,7 @@ function create_fragment(ctx) {
insert(target, each_1_anchor, anchor); insert(target, each_1_anchor, anchor);
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*things*/ 1) { if (dirty & /*things*/ 1) {
each_value = /*things*/ ctx[0]; each_value = /*things*/ ctx[0];
each_blocks = update_keyed_each(each_blocks, dirty, get_key, 1, ctx, each_value, each_1_lookup, each_1_anchor.parentNode, destroy_block, create_each_block, each_1_anchor, get_each_context); each_blocks = update_keyed_each(each_blocks, dirty, get_key, 1, ctx, each_value, each_1_lookup, each_1_anchor.parentNode, destroy_block, create_each_block, each_1_anchor, get_each_context);

@ -69,6 +69,8 @@ function create_fragment(ctx) {
}, },
p(new_ctx, [dirty]) { p(new_ctx, [dirty]) {
ctx = new_ctx; ctx = new_ctx;
/* istanbul ignore next */
if (dirty & /*number*/ 2) set_data(t4, /*number*/ ctx[1]); if (dirty & /*number*/ 2) set_data(t4, /*number*/ ctx[1]);
}, },
i: noop, i: noop,

@ -66,6 +66,7 @@ function create_fragment(ctx) {
insert(target, if_block_anchor, anchor); insert(target, if_block_anchor, anchor);
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (current_block_type !== (current_block_type = select_block_type(ctx, dirty))) { if (current_block_type !== (current_block_type = select_block_type(ctx, dirty))) {
if_block.d(1); if_block.d(1);
if_block = current_block_type(ctx); if_block = current_block_type(ctx);

@ -41,6 +41,7 @@ function create_fragment(ctx) {
insert(target, if_block_anchor, anchor); insert(target, if_block_anchor, anchor);
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (/*foo*/ ctx[0]) { if (/*foo*/ ctx[0]) {
if (if_block) { if (if_block) {

@ -23,6 +23,7 @@ function create_fragment(ctx) {
insert(target, div, anchor); insert(target, div, anchor);
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*color*/ 1) { if (dirty & /*color*/ 1) {
set_style(div, "color", /*color*/ ctx[0]); set_style(div, "color", /*color*/ ctx[0]);
} }

@ -22,6 +22,7 @@ function create_fragment(ctx) {
insert(target, div, anchor); insert(target, div, anchor);
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*data*/ 1) { if (dirty & /*data*/ 1) {
set_style(div, "background", "url(data:image/png;base64," + /*data*/ ctx[0] + ")"); set_style(div, "background", "url(data:image/png;base64," + /*data*/ ctx[0] + ")");
} }

@ -22,6 +22,7 @@ function create_fragment(ctx) {
insert(target, div, anchor); insert(target, div, anchor);
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*color*/ 1) { if (dirty & /*color*/ 1) {
set_style(div, "color", /*color*/ ctx[0]); set_style(div, "color", /*color*/ ctx[0]);
} }

@ -31,6 +31,7 @@ function create_fragment(ctx) {
insert(target, div1, anchor); insert(target, div1, anchor);
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*style*/ 1) { if (dirty & /*style*/ 1) {
attr(div0, "style", /*style*/ ctx[0]); attr(div0, "style", /*style*/ ctx[0]);
} }

@ -50,6 +50,7 @@ function create_fragment(ctx) {
} }
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*test*/ 1 && input.value !== /*test*/ ctx[0]) { if (dirty & /*test*/ 1 && input.value !== /*test*/ ctx[0]) {
set_input_value(input, /*test*/ ctx[0]); set_input_value(input, /*test*/ ctx[0]);
} }

@ -38,6 +38,7 @@ function create_fragment(ctx) {
} }
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*value*/ 1) { if (dirty & /*value*/ 1) {
set_input_value(input, /*value*/ ctx[0]); set_input_value(input, /*value*/ ctx[0]);
} }

@ -249,6 +249,7 @@ function create_fragment(ctx) {
} }
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*name*/ 1 && input0.value !== /*name*/ ctx[0]) { if (dirty & /*name*/ 1 && input0.value !== /*name*/ ctx[0]) {
input0.value = /*name*/ ctx[0]; input0.value = /*name*/ ctx[0];
} }

@ -31,6 +31,7 @@ function create_fragment(ctx) {
} }
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*foo*/ 1) { if (dirty & /*foo*/ 1) {
input.checked = /*foo*/ ctx[0]; input.checked = /*foo*/ ctx[0];
} }

@ -45,6 +45,7 @@ function create_fragment(ctx) {
} }
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*x*/ 1) set_data(t3, /*x*/ ctx[0]); if (dirty & /*x*/ 1) set_data(t3, /*x*/ ctx[0]);
}, },
i: noop, i: noop,

@ -29,6 +29,7 @@ function create_fragment(ctx) {
append(p, t1); append(p, t1);
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*x*/ 1) set_data(t1, /*x*/ ctx[0]); if (dirty & /*x*/ 1) set_data(t1, /*x*/ ctx[0]);
}, },
i: noop, i: noop,

@ -46,6 +46,7 @@ function create_fragment(ctx) {
} }
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*things*/ 1 && t3_value !== (t3_value = /*things*/ ctx[0].length + "")) set_data(t3, t3_value); if (dirty & /*things*/ 1 && t3_value !== (t3_value = /*things*/ ctx[0].length + "")) set_data(t3, t3_value);
}, },
i: noop, i: noop,

@ -45,6 +45,7 @@ function create_fragment(ctx) {
} }
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*x*/ 1) set_data(t3, /*x*/ ctx[0]); if (dirty & /*x*/ 1) set_data(t3, /*x*/ ctx[0]);
}, },
i: noop, i: noop,

@ -46,6 +46,7 @@ function create_fragment(ctx) {
} }
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*things*/ 1 && t3_value !== (t3_value = /*things*/ ctx[0].length + "")) set_data(t3, t3_value); if (dirty & /*things*/ 1 && t3_value !== (t3_value = /*things*/ ctx[0].length + "")) set_data(t3, t3_value);
}, },
i: noop, i: noop,

@ -75,6 +75,7 @@ function create_fragment(ctx) {
} }
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (!audio_updating && dirty & /*currentTime*/ 8 && !isNaN(/*currentTime*/ ctx[3])) { if (!audio_updating && dirty & /*currentTime*/ 8 && !isNaN(/*currentTime*/ ctx[3])) {
audio.currentTime = /*currentTime*/ ctx[3]; audio.currentTime = /*currentTime*/ ctx[3];
} }

@ -92,7 +92,9 @@ function create_fragment(ctx) {
current = true; current = true;
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if ((!current || dirty & /*a*/ 1) && t0_value !== (t0_value = /*a*/ ctx[0].normal + "")) set_data(t0, t0_value); if ((!current || dirty & /*a*/ 1) && t0_value !== (t0_value = /*a*/ ctx[0].normal + "")) set_data(t0, t0_value);
if ((!current || dirty & /*b*/ 2) && t1_value !== (t1_value = /*b*/ ctx[1]?.optional + "")) set_data(t1, t1_value); if ((!current || dirty & /*b*/ 2) && t1_value !== (t1_value = /*b*/ ctx[1]?.optional + "")) set_data(t1, t1_value);
if ((!current || dirty & /*c*/ 4) && t3_value !== (t3_value = /*c*/ ctx[2]['computed'] + "")) set_data(t3, t3_value); if ((!current || dirty & /*c*/ 4) && t3_value !== (t3_value = /*c*/ ctx[2]['computed'] + "")) set_data(t3, t3_value);
if ((!current || dirty & /*d*/ 8) && t4_value !== (t4_value = /*d*/ ctx[3]?.['computed_optional'] + "")) set_data(t4, t4_value); if ((!current || dirty & /*d*/ 8) && t4_value !== (t4_value = /*d*/ ctx[3]?.['computed_optional'] + "")) set_data(t4, t4_value);

@ -83,6 +83,7 @@ function create_fragment(ctx) {
insert(target, div8, anchor); insert(target, div8, anchor);
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*reactiveModuleVar*/ 0) { if (dirty & /*reactiveModuleVar*/ 0) {
toggle_class(div0, "update1", reactiveModuleVar); toggle_class(div0, "update1", reactiveModuleVar);
} }

@ -35,6 +35,7 @@ function create_fragment(ctx) {
select_option(select, /*current*/ ctx[0]); select_option(select, /*current*/ ctx[0]);
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*current*/ 1) { if (dirty & /*current*/ 1) {
select_option(select, /*current*/ ctx[0]); select_option(select, /*current*/ ctx[0]);
} }

@ -38,6 +38,7 @@ function create_fragment(ctx) {
append_hydration(svg, img); append_hydration(svg, img);
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*url*/ 1) { if (dirty & /*url*/ 1) {
attr(img, "src", /*url*/ ctx[0]); attr(img, "src", /*url*/ ctx[0]);
} }

@ -39,6 +39,7 @@ function create_fragment(ctx) {
append_hydration(svg, img); append_hydration(svg, img);
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*url*/ 1) { if (dirty & /*url*/ 1) {
attr(img, "src", /*url*/ ctx[0]); attr(img, "src", /*url*/ ctx[0]);
} }

@ -46,6 +46,7 @@ function create_fragment(ctx) {
insert_hydration(target, img1, anchor); insert_hydration(target, img1, anchor);
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*url*/ 1 && !src_url_equal(img0.src, img0_src_value = /*url*/ ctx[0])) { if (dirty & /*url*/ 1 && !src_url_equal(img0.src, img0_src_value = /*url*/ ctx[0])) {
attr(img0, "src", img0_src_value); attr(img0, "src", img0_src_value);
} }

@ -70,6 +70,7 @@ function create_dynamic_element(ctx) {
} }
}, },
p(ctx, dirty) { p(ctx, dirty) {
/* istanbul ignore next */
svelte_element0_data = get_spread_update(svelte_element0_levels, [{ class: "inner" }]); svelte_element0_data = get_spread_update(svelte_element0_levels, [{ class: "inner" }]);
if ((/-/).test(span)) { if ((/-/).test(span)) {
@ -109,6 +110,7 @@ function create_fragment(ctx) {
insert(target, svelte_element_anchor, anchor); insert(target, svelte_element_anchor, anchor);
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (a) { if (a) {
if (!previous_tag) { if (!previous_tag) {
svelte_element = create_dynamic_element(ctx); svelte_element = create_dynamic_element(ctx);

@ -43,7 +43,9 @@ function create_dynamic_element(ctx) {
append(svelte_element1, svelte_element0); append(svelte_element1, svelte_element0);
}, },
p(ctx, dirty) { p(ctx, dirty) {
/* istanbul ignore next */
svelte_element0_data = get_spread_update(svelte_element0_levels, [{ xmlns: "http://www.w3.org/2000/svg" }]); svelte_element0_data = get_spread_update(svelte_element0_levels, [{ xmlns: "http://www.w3.org/2000/svg" }]);
set_svg_attributes(svelte_element0, svelte_element0_data); set_svg_attributes(svelte_element0, svelte_element0_data);
svelte_element1_data = get_spread_update(svelte_element1_levels, [{ xmlns: "http://www.w3.org/2000/svg" }]); svelte_element1_data = get_spread_update(svelte_element1_levels, [{ xmlns: "http://www.w3.org/2000/svg" }]);
set_svg_attributes(svelte_element1, svelte_element1_data); set_svg_attributes(svelte_element1, svelte_element1_data);
@ -69,6 +71,7 @@ function create_fragment(ctx) {
insert(target, svelte_element_anchor, anchor); insert(target, svelte_element_anchor, anchor);
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (/*tag*/ ctx[0].svg) { if (/*tag*/ ctx[0].svg) {
if (!previous_tag) { if (!previous_tag) {
svelte_element = create_dynamic_element(ctx); svelte_element = create_dynamic_element(ctx);

@ -9,6 +9,7 @@ function create_fragment(ctx) {
c: noop, c: noop,
m: noop, m: noop,
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*custom*/ 1 && title_value !== (title_value = "a " + /*custom*/ ctx[0] + " title")) { if (dirty & /*custom*/ 1 && title_value !== (title_value = "a " + /*custom*/ ctx[0] + " title")) {
document.title = title_value; document.title = title_value;
} }

@ -27,6 +27,7 @@ function create_if_block(ctx) {
insert(target, if_block_anchor, anchor); insert(target, if_block_anchor, anchor);
}, },
p(ctx, dirty) { p(ctx, dirty) {
/* istanbul ignore next */
if (/*y*/ ctx[1]) { if (/*y*/ ctx[1]) {
if (if_block) { if (if_block) {
if (dirty & /*y*/ 2) { if (dirty & /*y*/ 2) {
@ -94,6 +95,7 @@ function create_fragment(ctx) {
insert(target, if_block_anchor, anchor); insert(target, if_block_anchor, anchor);
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (/*x*/ ctx[0]) { if (/*x*/ ctx[0]) {
if (if_block) { if (if_block) {
if_block.p(ctx, dirty); if_block.p(ctx, dirty);

@ -62,6 +62,7 @@ function create_fragment(ctx) {
current = true; current = true;
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (/*num*/ ctx[0] < 5) { if (/*num*/ ctx[0] < 5) {
if (if_block) { if (if_block) {
if (dirty & /*num*/ 1) { if (dirty & /*num*/ 1) {

@ -57,6 +57,7 @@ function create_fragment(ctx) {
append(p3, t9); append(p3, t9);
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*world3*/ 1) set_data(t9, /*world3*/ ctx[0]); if (dirty & /*world3*/ 1) set_data(t9, /*world3*/ ctx[0]);
}, },
i: noop, i: noop,

@ -28,6 +28,7 @@ function create_fragment(ctx) {
append(p, t); append(p, t);
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*y*/ 1) set_data(t, /*y*/ ctx[0]); if (dirty & /*y*/ 1) set_data(t, /*y*/ ctx[0]);
}, },
i: noop, i: noop,

@ -156,6 +156,7 @@ function create_fragment(ctx) {
insert(target, if_block4_anchor, anchor); insert(target, if_block4_anchor, anchor);
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (/*a*/ ctx[0]) { if (/*a*/ ctx[0]) {
if (if_block0) { if (if_block0) {

@ -53,6 +53,7 @@ function create_fragment(ctx) {
} }
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (!video_updating && dirty & /*currentTime*/ 1 && !isNaN(/*currentTime*/ ctx[0])) { if (!video_updating && dirty & /*currentTime*/ 1 && !isNaN(/*currentTime*/ ctx[0])) {
video.currentTime = /*currentTime*/ ctx[0]; video.currentTime = /*currentTime*/ ctx[0];
} }

@ -52,6 +52,7 @@ function create_fragment(ctx) {
} }
}, },
p(ctx, [dirty]) { p(ctx, [dirty]) {
/* istanbul ignore next */
if (dirty & /*y*/ 1 && !scrolling) { if (dirty & /*y*/ 1 && !scrolling) {
scrolling = true; scrolling = true;
clearTimeout(scrolling_timeout); clearTimeout(scrolling_timeout);

Loading…
Cancel
Save