pull/1646/head
Rich Harris 7 years ago
parent a5967fa118
commit a1264f583d

@ -232,8 +232,8 @@ function create_each_block(component, ctx) {
text = createText(text_value); text = createText(text_value);
text_1 = createText("\n\t"); text_1 = createText("\n\t");
const { foo, bar, baz } = ctx; const { foo, bar, baz, thing } = ctx;
console.log({ foo, bar, baz }); console.log({ foo, bar, baz, thing });
debugger; debugger;
}, },
@ -248,9 +248,9 @@ function create_each_block(component, ctx) {
setData(text, text_value); setData(text, text_value);
} }
if (changed.foo || changed.bar || changed.baz) { if (changed.foo || changed.bar || changed.baz || changed.things) {
const { foo, bar, baz } = ctx; const { foo, bar, baz, thing } = ctx;
console.log({ foo, bar, baz }); console.log({ foo, bar, baz, thing });
debugger; debugger;
} }
}, },

Loading…
Cancel
Save