// Jest Snapshot v1, https://goo.gl/fbAQLP exports[`rendering semantics can force a render to update sub tree 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component } = bdom; let { withDefault, getTemplate, prepareList, withKey, zero, call, callSlot, capture, isBoundary, shallowEqual, setContextValue, toNumber, safeOutput } = helpers; return function template(ctx, node, key = \\"\\") { return text(\`child\`); } }" `; exports[`rendering semantics can force a render to update sub tree 2`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component } = bdom; let { withDefault, getTemplate, prepareList, withKey, zero, call, callSlot, capture, isBoundary, shallowEqual, setContextValue, toNumber, safeOutput } = helpers; return function template(ctx, node, key = \\"\\") { let b2 = text(ctx['state'].value); let b3 = component(\`Child\`, {}, key + \`__1\`, node, ctx); return multi([b2, b3]); } }" `; exports[`rendering semantics can render a parent without rendering child 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component } = bdom; let { withDefault, getTemplate, prepareList, withKey, zero, call, callSlot, capture, isBoundary, shallowEqual, setContextValue, toNumber, safeOutput } = helpers; return function template(ctx, node, key = \\"\\") { return text(\`child\`); } }" `; exports[`rendering semantics can render a parent without rendering child 2`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component } = bdom; let { withDefault, getTemplate, prepareList, withKey, zero, call, callSlot, capture, isBoundary, shallowEqual, setContextValue, toNumber, safeOutput } = helpers; return function template(ctx, node, key = \\"\\") { let b2 = text(ctx['state'].value); let b3 = component(\`Child\`, {}, key + \`__1\`, node, ctx); return multi([b2, b3]); } }" `;