// Jest Snapshot v1, https://goo.gl/fbAQLP exports[`basics basic use 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; return function template(ctx, node, key = \\"\\") { return component(\`Child\`, {p: 1}, key + \`__1\`, node, ctx); } }" `; exports[`basics basic use 2`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; let block1 = createBlock(\`child\`); return function template(ctx, node, key = \\"\\") { let txt1 = ctx['props'].p; return block1([txt1]); } }" `; exports[`basics can select a sub widget 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; return function template(ctx, node, key = \\"\\") { let b2,b3; if (ctx['env'].options.flag) { b2 = component(\`Child\`, {}, key + \`__1\`, node, ctx); } if (!ctx['env'].options.flag) { b3 = component(\`OtherChild\`, {}, key + \`__2\`, node, ctx); } return multi([b2, b3]); } }" `; exports[`basics can select a sub widget 2`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; let block1 = createBlock(\`CHILD 1\`); return function template(ctx, node, key = \\"\\") { return block1(); } }" `; exports[`basics can select a sub widget 3`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; let block1 = createBlock(\`
CHILD 2
\`); return function template(ctx, node, key = \\"\\") { return block1(); } }" `; exports[`basics can select a sub widget, part 2 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; return function template(ctx, node, key = \\"\\") { let b2,b3; if (ctx['state'].flag) { b2 = component(\`Child\`, {}, key + \`__1\`, node, ctx); } if (!ctx['state'].flag) { b3 = component(\`OtherChild\`, {}, key + \`__2\`, node, ctx); } return multi([b2, b3]); } }" `; exports[`basics can select a sub widget, part 2 2`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; let block1 = createBlock(\`CHILD 1\`); return function template(ctx, node, key = \\"\\") { return block1(); } }" `; exports[`basics can select a sub widget, part 2 3`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; let block1 = createBlock(\`
CHILD 2
\`); return function template(ctx, node, key = \\"\\") { return block1(); } }" `; exports[`basics sub widget is interactive 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; return function template(ctx, node, key = \\"\\") { return component(\`Child\`, {p: 1}, key + \`__1\`, node, ctx); } }" `; exports[`basics sub widget is interactive 2`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; let block1 = createBlock(\`child\`); return function template(ctx, node, key = \\"\\") { let hdlr1 = [ctx['inc'], ctx]; let txt1 = ctx['state'].val; return block1([hdlr1, txt1]); } }" `; exports[`basics top level sub widget with a parent 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; let block1 = createBlock(\`
\`); return function template(ctx, node, key = \\"\\") { let b2 = component(\`ComponentB\`, {}, key + \`__1\`, node, ctx); return block1([], [b2]); } }" `; exports[`basics top level sub widget with a parent 2`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; return function template(ctx, node, key = \\"\\") { return component(\`ComponentC\`, {}, key + \`__1\`, node, ctx); } }" `; exports[`basics top level sub widget with a parent 3`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; let block1 = createBlock(\`Hello\`); return function template(ctx, node, key = \\"\\") { return block1(); } }" `;