// Jest Snapshot v1, https://goo.gl/fbAQLP exports[`simple templates, mostly static can render a table row 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; let block1 = createBlock(\`cell\`); return function template(ctx, node, key = \\"\\") { return block1(); } }" `; exports[`simple templates, mostly static div with a class attribute 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; let block1 = createBlock(\`
foo
\`); return function template(ctx, node, key = \\"\\") { return block1(); } }" `; exports[`simple templates, mostly static div with a class attribute with a quote 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; let block1 = createBlock(\`
word
\`); return function template(ctx, node, key = \\"\\") { return block1(); } }" `; exports[`simple templates, mostly static div with a span child node 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; let block1 = createBlock(\`
word
\`); return function template(ctx, node, key = \\"\\") { return block1(); } }" `; exports[`simple templates, mostly static div with an arbitrary attribute with a quote 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; let block1 = createBlock(\`
word
\`); return function template(ctx, node, key = \\"\\") { return block1(); } }" `; exports[`simple templates, mostly static div with an empty class attribute 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; let block1 = createBlock(\`
word
\`); return function template(ctx, node, key = \\"\\") { return block1(); } }" `; exports[`simple templates, mostly static div with content 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; let block1 = createBlock(\`
foo
\`); return function template(ctx, node, key = \\"\\") { return block1(); } }" `; exports[`simple templates, mostly static dom node with t-esc 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 d1 = ctx['text']; return block1([d1]); } }" `; exports[`simple templates, mostly static dom node with t-esc 2`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; let block1 = createBlock(\`
\`); return function template(ctx, node, key = \\"\\") { let d1 = ctx['text']; return block1([d1]); } }" `; exports[`simple templates, mostly static dynamic text value 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; return function template(ctx, node, key = \\"\\") { return text(ctx['text']); } }" `; exports[`simple templates, mostly static empty div 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; let block1 = createBlock(\`
\`); return function template(ctx, node, key = \\"\\") { return block1(); } }" `; exports[`simple templates, mostly static empty string 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; return function template(ctx, node, key = \\"\\") { return text(\`\`); } }" `; exports[`simple templates, mostly static empty string in a template set 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; return function template(ctx, node, key = \\"\\") { return text(\`\`); } }" `; exports[`simple templates, mostly static inline template string in t-esc 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; return function template(ctx, node, key = \\"\\") { return text(\`text\`); } }" `; exports[`simple templates, mostly static inline template string with content in t-esc 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; let { isBoundary, withDefault, setContextValue } = helpers; return function template(ctx, node, key = \\"\\") { ctx = Object.create(ctx); ctx[isBoundary] = 1 setContextValue(ctx, \\"v\\", 1); return text(\`text\${ctx['v']}\`); } }" `; exports[`simple templates, mostly static inline template string with variable in context 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; return function template(ctx, node, key = \\"\\") { return text(\`text \${ctx['v']}\`); } }" `; exports[`simple templates, mostly static multiple root nodes 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; let block2 = createBlock(\`
foo
\`); let block3 = createBlock(\`hey\`); return function template(ctx, node, key = \\"\\") { let b2 = block2(); let b3 = block3(); return multi([b2, b3]); } }" `; exports[`simple templates, mostly static simple string 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; return function template(ctx, node, key = \\"\\") { return text(\`hello vdom\`); } }" `; exports[`simple templates, mostly static simple string in t tag 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; return function template(ctx, node, key = \\"\\") { return text(\`hello vdom\`); } }" `; exports[`simple templates, mostly static static text and dynamic text (no t tag) 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; return function template(ctx, node, key = \\"\\") { let b2 = text(\`hello \`); let b3 = text(ctx['text']); return multi([b2, b3]); } }" `; exports[`simple templates, mostly static static text and dynamic text 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; return function template(ctx, node, key = \\"\\") { let b2 = text(\`hello \`); let b3 = text(ctx['text']); return multi([b2, b3]); } }" `; exports[`simple templates, mostly static t-esc in dom node 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 d1 = ctx['text']; return block1([d1]); } }" `; exports[`simple templates, mostly static t-esc in dom node, variations 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; let block1 = createBlock(\`
hello
\`); return function template(ctx, node, key = \\"\\") { let d1 = ctx['text']; return block1([d1]); } }" `; exports[`simple templates, mostly static t-esc in dom node, variations 2`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; let block1 = createBlock(\`
hello world
\`); return function template(ctx, node, key = \\"\\") { let d1 = ctx['text']; return block1([d1]); } }" `; exports[`simple templates, mostly static template with multiple t tag with multiple content 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; let block1 = createBlock(\`
Loading
\`); return function template(ctx, node, key = \\"\\") { let d1 = ctx['a']; let d2 = ctx['b']; let d3 = ctx['c']; return block1([d1, d2, d3]); } }" `; exports[`simple templates, mostly static template with t tag with multiple content 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; let block1 = createBlock(\`
Loading
\`); return function template(ctx, node, key = \\"\\") { let b2; if (false) { b2 = text(\`\`); } return block1([], [b2]); } }" `; exports[`simple templates, mostly static two t-escs next to each other 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; return function template(ctx, node, key = \\"\\") { let b2 = text(ctx['text1']); let b3 = text(ctx['text2']); return multi([b2, b3]); } }" `; exports[`simple templates, mostly static two t-escs next to each other 2`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component, comment } = bdom; return function template(ctx, node, key = \\"\\") { let b2 = text(ctx['text1']); let b3 = text(ctx['text2']); return multi([b2, b3]); } }" `; exports[`simple templates, mostly static two t-escs next to each other, in a div 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 d1 = ctx['text1']; let d2 = ctx['text2']; return block1([d1, d2]); } }" `;