mirror of https://github.com/sveltejs/svelte
Merge pull request #3478 from sveltejs/gh-3447
Don't generate code for a non-updating if blockpull/3506/head
commit
d75b6388f3
@ -0,0 +1,81 @@
|
||||
/* generated by Svelte vX.Y.Z */
|
||||
import {
|
||||
SvelteComponent,
|
||||
attr,
|
||||
detach,
|
||||
element,
|
||||
empty,
|
||||
init,
|
||||
insert,
|
||||
noop,
|
||||
safe_not_equal
|
||||
} from "svelte/internal";
|
||||
|
||||
// (7:0) {#if (item.divider && item.divider.includes(1))}
|
||||
function create_if_block(ctx) {
|
||||
var div;
|
||||
|
||||
return {
|
||||
c() {
|
||||
div = element("div");
|
||||
attr(div, "class", "divider");
|
||||
},
|
||||
|
||||
m(target, anchor) {
|
||||
insert(target, div, anchor);
|
||||
},
|
||||
|
||||
d(detaching) {
|
||||
if (detaching) {
|
||||
detach(div);
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
function create_fragment(ctx) {
|
||||
var show_if = (ctx.item.divider && ctx.item.divider.includes(1)), if_block_anchor;
|
||||
|
||||
var if_block = (show_if) && create_if_block(ctx);
|
||||
|
||||
return {
|
||||
c() {
|
||||
if (if_block) if_block.c();
|
||||
if_block_anchor = empty();
|
||||
},
|
||||
|
||||
m(target, anchor) {
|
||||
if (if_block) if_block.m(target, anchor);
|
||||
insert(target, if_block_anchor, anchor);
|
||||
},
|
||||
|
||||
p: noop,
|
||||
i: noop,
|
||||
o: noop,
|
||||
|
||||
d(detaching) {
|
||||
if (if_block) if_block.d(detaching);
|
||||
|
||||
if (detaching) {
|
||||
detach(if_block_anchor);
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
function instance($$self) {
|
||||
let item = {
|
||||
divider: [1]
|
||||
}
|
||||
|
||||
return { item };
|
||||
}
|
||||
|
||||
class Component extends SvelteComponent {
|
||||
constructor(options) {
|
||||
super();
|
||||
init(this, options, instance, create_fragment, safe_not_equal, []);
|
||||
}
|
||||
}
|
||||
|
||||
export default Component;
|
@ -0,0 +1,9 @@
|
||||
<script>
|
||||
let item = {
|
||||
divider: [1]
|
||||
}
|
||||
</script>
|
||||
|
||||
{#if (item.divider && item.divider.includes(1))}
|
||||
<div class="divider"></div>
|
||||
{/if}
|
@ -0,0 +1,12 @@
|
||||
export default {
|
||||
props: {
|
||||
foo: 42
|
||||
},
|
||||
|
||||
html: '<p>42</p>',
|
||||
|
||||
test({ assert, component, target }) {
|
||||
component.foo = 43;
|
||||
assert.htmlEqual(target.innerHTML, '<p>43</p>');
|
||||
}
|
||||
};
|
@ -0,0 +1,9 @@
|
||||
<script>
|
||||
export let foo;
|
||||
|
||||
const show = () => true;
|
||||
</script>
|
||||
|
||||
{#if show()}
|
||||
<p>{foo}</p>
|
||||
{/if}
|
Loading…
Reference in new issue