// Jest Snapshot v1, https://goo.gl/fbAQLP exports[`debugging t-debug 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component } = bdom; let { withDefault, getTemplate, prepareList, withKey, zero, call, callSlot, capture, shallowEqual } = helpers; let block1 = createBlock(\`
\`); let block2 = createBlock(\`hey\`); return function template(ctx, node, key = \\"\\") { debugger; let b2; if (true) { debugger; b2 = block2(); } return block1([], [b2]); } }" `; exports[`debugging t-log 1`] = ` "function anonymous(bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, component } = bdom; let { withDefault, getTemplate, prepareList, withKey, zero, call, callSlot, capture, shallowEqual } = helpers; let block1 = createBlock(\`
\`); return function template(ctx, node, key = \\"\\") { ctx = Object.create(ctx); ctx[\`foo\`] = 42; console.log(ctx['foo']+3); return block1(); } }" `;