failing test for

pull/1383/head
Rich Harris 7 years ago
parent dbab1a886d
commit 7fe3e4a85d

@ -162,9 +162,7 @@ function create_main_fragment(component, ctx) {
for (var i = 0; i < each_value.length; i += 1) {
each_blocks[i] = create_each_block(component, assign(assign({}, ctx), {
each_value: each_value,
node: each_value[i],
node_index: i
node: each_value[i]
}));
}
@ -191,9 +189,7 @@ function create_main_fragment(component, ctx) {
for (var i = 0; i < each_value.length; i += 1) {
var each_context = assign(assign({}, ctx), {
each_value: each_value,
node: each_value[i],
node_index: i
node: each_value[i]
});
if (each_blocks[i]) {

@ -10,9 +10,7 @@ function create_main_fragment(component, ctx) {
for (var i = 0; i < each_value.length; i += 1) {
each_blocks[i] = create_each_block(component, assign(assign({}, ctx), {
each_value: each_value,
node: each_value[i],
node_index: i
node: each_value[i]
}));
}
@ -39,9 +37,7 @@ function create_main_fragment(component, ctx) {
for (var i = 0; i < each_value.length; i += 1) {
var each_context = assign(assign({}, ctx), {
each_value: each_value,
node: each_value[i],
node_index: i
node: each_value[i]
});
if (each_blocks[i]) {

Loading…
Cancel
Save