// Jest Snapshot v1, https://goo.gl/fbAQLP exports[`refs basic use 1`] = ` "function anonymous(app, bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, comment } = bdom; let block1 = createBlock(\`
\`); return function template(ctx, node, key = \\"\\") { let ref1 = (el) => this.__owl__.setRef((\`div\`), el); return block1([ref1]); } }" `; exports[`refs can use 2 refs with same name in a t-if/t-else situation 1`] = ` "function anonymous(app, bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, comment } = bdom; let block2 = createBlock(\`
\`); let block3 = createBlock(\`\`); return function template(ctx, node, key = \\"\\") { let b2, b3; if (ctx['state'].value) { let ref1 = (el) => this.__owl__.setRef((\`coucou\`), el); b2 = block2([ref1]); } else { let ref2 = (el) => this.__owl__.setRef((\`coucou\`), el); b3 = block3([ref2]); } return multi([b2, b3]); } }" `; exports[`refs ref is unset when t-if goes to false after unrelated render 1`] = ` "function anonymous(app, bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, comment } = bdom; let block2 = createBlock(\`
\`); return function template(ctx, node, key = \\"\\") { let b2; if (ctx['state'].show) { let attr1 = ctx['state'].class; let ref1 = (el) => this.__owl__.setRef((\`coucou\`), el); b2 = block2([attr1, ref1]); } return multi([b2]); } }" `; exports[`refs refs and recursive templates 1`] = ` "function anonymous(app, bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, comment } = bdom; const comp1 = app.createComponent(\`Test\`, true, false, false, [\\"tree\\"]); let block1 = createBlock(\`

\`); return function template(ctx, node, key = \\"\\") { let b2; let ref1 = (el) => this.__owl__.setRef((\`root\`), el); let txt1 = ctx['props'].tree.value; if (ctx['props'].tree.child) { b2 = comp1({tree: ctx['props'].tree.child}, key + \`__1\`, node, this, null); } return block1([ref1, txt1], [b2]); } }" `; exports[`refs refs and t-key 1`] = ` "function anonymous(app, bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, comment } = bdom; let block2 = createBlock(\`\`); function slot1(ctx, node, key = \\"\\") { let hdlr1 = [ctx['doSomething'], ctx]; let ref1 = (el) => this.__owl__.setRef((\`myButton\`), el); return block2([hdlr1, ref1]); } return function template(ctx, node, key = \\"\\") { let txt1 = ctx['state'].val; const ctx1 = capture(ctx); const b3 = comp1({slots: markRaw({'footer': {__render: slot1.bind(this), __ctx: ctx1}})}, key + \`__1\`, node, this, null); return block1([txt1], [b3]); } }" `; exports[`refs refs are properly bound in slots 2`] = ` "function anonymous(app, bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, comment } = bdom; let { callSlot } = helpers; let block1 = createBlock(\`\`); return function template(ctx, node, key = \\"\\") { const b2 = callSlot(ctx, node, key, 'footer', false, {}); return block1([], [b2]); } }" `; exports[`refs throws if there are 2 same refs at the same time 1`] = ` "function anonymous(app, bdom, helpers ) { let { text, createBlock, list, multi, html, toggler, comment } = bdom; let { makeRefWrapper } = helpers; let block2 = createBlock(\`
\`); let block3 = createBlock(\`\`); return function template(ctx, node, key = \\"\\") { let refWrapper = makeRefWrapper(this.__owl__); let ref1 = refWrapper(\`coucou\`, (el) => this.__owl__.setRef((\`coucou\`), el)); const b2 = block2([ref1]); let ref2 = refWrapper(\`coucou\`, (el) => this.__owl__.setRef((\`coucou\`), el)); const b3 = block3([ref2]); return multi([b2, b3]); } }" `;