// Jest Snapshot v1, https://goo.gl/fbAQLP exports[`attributes class and t-attf-class with ternary operation 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; var _1 = 'hello ' + (scope['value']?'world':''); let c2 = [], p2 = {key:2,attrs:{class: _1}}; var vn2 = h('div', p2, c2); return vn2; }" `; exports[`attributes dynamic attribute falsy variable 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; var _1 = scope['value']; let c2 = [], p2 = {key:2,attrs:{foo: _1}}; var vn2 = h('div', p2, c2); return vn2; }" `; exports[`attributes dynamic attribute with a dash 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; var _1 = scope['id']; let c2 = [], p2 = {key:2,attrs:{\\"data-action-id\\": _1}}; var vn2 = h('div', p2, c2); return vn2; }" `; exports[`attributes dynamic attributes 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; var _1 = 'bar'; let c2 = [], p2 = {key:2,attrs:{foo: _1}}; var vn2 = h('div', p2, c2); return vn2; }" `; exports[`attributes dynamic class attribute 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let utils = this.constructor.utils; let scope = Object.create(context); var h = this.h; let _1 = utils.toObj(scope['c']); let c2 = [], p2 = {key:2,class:_1}; var vn2 = h('div', p2, c2); return vn2; }" `; exports[`attributes dynamic empty class attribute 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let utils = this.constructor.utils; let scope = Object.create(context); var h = this.h; let _1 = utils.toObj(scope['c']); let c2 = [], p2 = {key:2,class:_1}; var vn2 = h('div', p2, c2); return vn2; }" `; exports[`attributes dynamic formatted attributes with a dash 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; var _1 = \`Some text \${scope['id']}\`; let c2 = [], p2 = {key:2,attrs:{\\"aria-label\\": _1}}; var vn2 = h('div', p2, c2); return vn2; }" `; exports[`attributes fixed variable 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; var _1 = scope['value']; let c2 = [], p2 = {key:2,attrs:{foo: _1}}; var vn2 = h('div', p2, c2); return vn2; }" `; exports[`attributes format expression 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; var _1 = (scope['value']+37); let c2 = [], p2 = {key:2,attrs:{foo: _1}}; var vn2 = h('div', p2, c2); return vn2; }" `; exports[`attributes format expression, other format 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; var _1 = (scope['value']+37); let c2 = [], p2 = {key:2,attrs:{foo: _1}}; var vn2 = h('div', p2, c2); return vn2; }" `; exports[`attributes format literal 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" var h = this.h; var _1 = \`bar\`; let c2 = [], p2 = {key:2,attrs:{foo: _1}}; var vn2 = h('div', p2, c2); return vn2; }" `; exports[`attributes format multiple 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; var _1 = \`a \${scope['value1']} is \${scope['value2']} of \${scope['value3']} ]\`; let c2 = [], p2 = {key:2,attrs:{foo: _1}}; var vn2 = h('div', p2, c2); return vn2; }" `; exports[`attributes format value 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; var _1 = \`b\${scope['value']}r\`; let c2 = [], p2 = {key:2,attrs:{foo: _1}}; var vn2 = h('div', p2, c2); return vn2; }" `; exports[`attributes from object variables set previously 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let utils = this.constructor.utils; let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); scope.o = {a:'b'}; let _2 = utils.toObj(scope.o.a); let c3 = [], p3 = {key:3,class:_2}; var vn3 = h('span', p3, c3); c1.push(vn3); return vn1; }" `; exports[`attributes from variables set previously 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let utils = this.constructor.utils; let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); scope.abc = 'def'; let _2 = utils.toObj(scope.abc); let c3 = [], p3 = {key:3,class:_2}; var vn3 = h('span', p3, c3); c1.push(vn3); return vn1; }" `; exports[`attributes object 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; var _1 = scope['value']; let c2 = [], p2 = {key:2,attrs:{}}; if (_1 instanceof Array) { p2.attrs[_1[0]] = _1[1]; } else { for (let key in _1) { p2.attrs[key] = _1[key]; } } var vn2 = h('div', p2, c2); return vn2; }" `; exports[`attributes static attributes 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" var h = this.h; var _1 = 'a'; var _2 = 'b'; var _3 = 'c'; let c4 = [], p4 = {key:4,attrs:{foo: _1,bar: _2,baz: _3}}; var vn4 = h('div', p4, c4); return vn4; }" `; exports[`attributes static attributes on void elements 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" var h = this.h; var _1 = '/test.jpg'; var _2 = 'Test'; let c3 = [], p3 = {key:3,attrs:{src: _1,alt: _2}}; var vn3 = h('img', p3, c3); return vn3; }" `; exports[`attributes static attributes with dashes 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" var h = this.h; var _1 = 'Close'; let c2 = [], p2 = {key:2,attrs:{\\"aria-label\\": _1}}; var vn2 = h('div', p2, c2); return vn2; }" `; exports[`attributes t-att-class and class should combine together 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let utils = this.constructor.utils; let scope = Object.create(context); var h = this.h; let _2 = {'hello':true}; Object.assign(_2, utils.toObj(scope['value'])) let c3 = [], p3 = {key:3,class:_2}; var vn3 = h('div', p3, c3); return vn3; }" `; exports[`attributes t-att-class with object 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let utils = this.constructor.utils; let scope = Object.create(context); var h = this.h; let _2 = {'static':true}; Object.assign(_2, utils.toObj({a:scope['b'],c:scope['d'],e:scope['f']})) let c3 = [], p3 = {key:3,class:_2}; var vn3 = h('div', p3, c3); return vn3; }" `; exports[`attributes t-attf-class should combine with class 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" var h = this.h; var _1 = 'hello ' + \`world\`; let c2 = [], p2 = {key:2,attrs:{class: _1}}; var vn2 = h('div', p2, c2); return vn2; }" `; exports[`attributes tuple literal 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; var _1 = ['foo','bar']; let c2 = [], p2 = {key:2,attrs:{}}; if (_1 instanceof Array) { p2.attrs[_1[0]] = _1[1]; } else { for (let key in _1) { p2.attrs[key] = _1[key]; } } var vn2 = h('div', p2, c2); return vn2; }" `; exports[`attributes tuple variable 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; var _1 = scope['value']; let c2 = [], p2 = {key:2,attrs:{}}; if (_1 instanceof Array) { p2.attrs[_1[0]] = _1[1]; } else { for (let key in _1) { p2.attrs[key] = _1[key]; } } var vn2 = h('div', p2, c2); return vn2; }" `; exports[`debugging t-debug 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; debugger; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); if (true) { debugger; let c2 = [], p2 = {key:2}; var vn2 = h('span', p2, c2); c1.push(vn2); c2.push({text: \`hey\`}); } return vn1; }" `; exports[`debugging t-log 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); scope.foo = 42; console.log(scope.foo+3) return vn1; }" `; exports[`foreach does not pollute the rendering context 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); var _2 = [1]; if (!_2) { throw new Error('QWeb error: Invalid loop expression')} var _3 = _4 = _2; if (!(_2 instanceof Array)) { _3 = Object.keys(_2); _4 = Object.values(_2); } var _length3 = _3.length; const _origScope5 = scope; scope = Object.assign(Object.create(context), scope); for (let i1 = 0; i1 < _length3; i1++) { scope.item_first = i1 === 0 scope.item_last = i1 === _length3 - 1 scope.item_index = i1 scope.item = _3[i1] scope.item_value = _4[i1] var _6 = scope['item']; if (_6 || _6 === 0) { c1.push({text: _6}); } } scope = _origScope5; return vn1; }" `; exports[`foreach iterate on items (on a element node) 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); var _2 = [1,2]; if (!_2) { throw new Error('QWeb error: Invalid loop expression')} var _3 = _4 = _2; if (!(_2 instanceof Array)) { _3 = Object.keys(_2); _4 = Object.values(_2); } var _length3 = _3.length; const _origScope5 = scope; scope = Object.assign(Object.create(context), scope); for (let i1 = 0; i1 < _length3; i1++) { scope.item_first = i1 === 0 scope.item_last = i1 === _length3 - 1 scope.item_index = i1 scope.item = _3[i1] scope.item_value = _4[i1] const nodeKey6 = scope['item']; let c7 = [], p7 = {key:nodeKey6}; var vn7 = h('span', p7, c7); c1.push(vn7); var _8 = scope['item']; if (_8 || _8 === 0) { c7.push({text: _8}); } } scope = _origScope5; return vn1; }" `; exports[`foreach iterate on items 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); var _2 = [3,2,1]; if (!_2) { throw new Error('QWeb error: Invalid loop expression')} var _3 = _4 = _2; if (!(_2 instanceof Array)) { _3 = Object.keys(_2); _4 = Object.values(_2); } var _length3 = _3.length; const _origScope5 = scope; scope = Object.assign(Object.create(context), scope); for (let i1 = 0; i1 < _length3; i1++) { scope.item_first = i1 === 0 scope.item_last = i1 === _length3 - 1 scope.item_index = i1 scope.item = _3[i1] scope.item_value = _4[i1] c1.push({text: \` [\`}); var _6 = scope['item_index']; if (_6 || _6 === 0) { c1.push({text: _6}); } c1.push({text: \`: \`}); var _7 = scope['item']; if (_7 || _7 === 0) { c1.push({text: _7}); } c1.push({text: \` \`}); var _8 = scope['item_value']; if (_8 || _8 === 0) { c1.push({text: _8}); } c1.push({text: \`] \`}); } scope = _origScope5; return vn1; }" `; exports[`foreach iterate, dict param 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); var _2 = scope['value']; if (!_2) { throw new Error('QWeb error: Invalid loop expression')} var _3 = _4 = _2; if (!(_2 instanceof Array)) { _3 = Object.keys(_2); _4 = Object.values(_2); } var _length3 = _3.length; const _origScope5 = scope; scope = Object.assign(Object.create(context), scope); for (let i1 = 0; i1 < _length3; i1++) { scope.item_first = i1 === 0 scope.item_last = i1 === _length3 - 1 scope.item_index = i1 scope.item = _3[i1] scope.item_value = _4[i1] c1.push({text: \` [\`}); var _6 = scope['item_index']; if (_6 || _6 === 0) { c1.push({text: _6}); } c1.push({text: \`: \`}); var _7 = scope['item']; if (_7 || _7 === 0) { c1.push({text: _7}); } c1.push({text: \` \`}); var _8 = scope['item_value']; if (_8 || _8 === 0) { c1.push({text: _8}); } c1.push({text: \`] \`}); } scope = _origScope5; return vn1; }" `; exports[`foreach iterate, position 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); var _2 = Array(5); if (!_2) { throw new Error('QWeb error: Invalid loop expression')} var _3 = _4 = _2; if (!(_2 instanceof Array)) { _3 = Object.keys(_2); _4 = Object.values(_2); } var _length3 = _3.length; const _origScope5 = scope; scope = Object.assign(Object.create(context), scope); for (let i1 = 0; i1 < _length3; i1++) { scope.elem_first = i1 === 0 scope.elem_last = i1 === _length3 - 1 scope.elem_index = i1 scope.elem = _3[i1] scope.elem_value = _4[i1] c1.push({text: \` -\`}); if (scope['elem_first']) { c1.push({text: \` first\`}); } if (scope['elem_last']) { c1.push({text: \` last\`}); } c1.push({text: \` (\`}); var _6 = scope['elem_index']; if (_6 || _6 === 0) { c1.push({text: _6}); } c1.push({text: \`) \`}); } scope = _origScope5; return vn1; }" `; exports[`foreach t-foreach in t-forach 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); var _2 = scope['numbers']; if (!_2) { throw new Error('QWeb error: Invalid loop expression')} var _3 = _4 = _2; if (!(_2 instanceof Array)) { _3 = Object.keys(_2); _4 = Object.values(_2); } var _length3 = _3.length; const _origScope5 = scope; scope = Object.assign(Object.create(context), scope); for (let i1 = 0; i1 < _length3; i1++) { scope.number_first = i1 === 0 scope.number_last = i1 === _length3 - 1 scope.number_index = i1 scope.number = _3[i1] scope.number_value = _4[i1] var _6 = scope['letters']; if (!_6) { throw new Error('QWeb error: Invalid loop expression')} var _7 = _8 = _6; if (!(_6 instanceof Array)) { _7 = Object.keys(_6); _8 = Object.values(_6); } var _length7 = _7.length; const _origScope9 = scope; scope = Object.assign(Object.create(context), scope); for (let i2 = 0; i2 < _length7; i2++) { scope.letter_first = i2 === 0 scope.letter_last = i2 === _length7 - 1 scope.letter_index = i2 scope.letter = _7[i2] scope.letter_value = _8[i2] c1.push({text: \` [\`}); var _10 = scope['number']; if (_10 || _10 === 0) { c1.push({text: _10}); } var _11 = scope['letter']; if (_11 || _11 === 0) { c1.push({text: _11}); } c1.push({text: \`] \`}); } scope = _origScope9; } scope = _origScope5; return vn1; }" `; exports[`foreach warn if no key in some case 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); var _2 = [1,2]; if (!_2) { throw new Error('QWeb error: Invalid loop expression')} var _3 = _4 = _2; if (!(_2 instanceof Array)) { _3 = Object.keys(_2); _4 = Object.values(_2); } var _length3 = _3.length; const _origScope5 = scope; scope = Object.assign(Object.create(context), scope); for (let i1 = 0; i1 < _length3; i1++) { scope.item_first = i1 === 0 scope.item_last = i1 === _length3 - 1 scope.item_index = i1 scope.item = _3[i1] scope.item_value = _4[i1] let c6 = [], p6 = {key:6}; var vn6 = h('span', p6, c6); c1.push(vn6); var _7 = scope['item']; if (_7 || _7 === 0) { c6.push({text: _7}); } } scope = _origScope5; return vn1; }" `; exports[`loading templates can initialize qweb with a string 1`] = ` "function anonymous(context, extra ) { // Template name: \\"hey\\" var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); c1.push({text: \`jupiler\`}); return vn1; }" `; exports[`loading templates can load a few templates from a xml string 1`] = ` "function anonymous(context, extra ) { // Template name: \\"main\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('ul', p1, c1); this.subTemplates['items'].call(this, Object.assign(Object.create(context), scope), Object.assign({}, extra, {parentNode: c1})); return vn1; }" `; exports[`misc global 1`] = ` "function anonymous(context, extra ) { // Template name: \\"caller\\" let utils = this.constructor.utils; let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); var _2 = [4,5,6]; if (!_2) { throw new Error('QWeb error: Invalid loop expression')} var _3 = _4 = _2; if (!(_2 instanceof Array)) { _3 = Object.keys(_2); _4 = Object.values(_2); } var _length3 = _3.length; const _origScope5 = scope; scope = Object.assign(Object.create(context), scope); for (let i1 = 0; i1 < _length3; i1++) { scope.value_first = i1 === 0 scope.value_last = i1 === _length3 - 1 scope.value_index = i1 scope.value = _3[i1] scope.value_value = _4[i1] let c6 = [], p6 = {key:6}; var vn6 = h('span', p6, c6); c1.push(vn6); var _7 = scope['value']; if (_7 || _7 === 0) { c6.push({text: _7}); } { const _origScope10 = scope; scope = Object.assign(Object.create(context), scope); { let c__0 = []; { const _origScope13 = scope; scope = Object.assign(Object.create(context), scope); { let c__0 = []; scope.foo = 'aaa'; scope[utils.zero] = c__0; } this.subTemplates['_callee-uses-foo'].call(this, scope, Object.assign({}, extra, {parentNode: c__0})); scope = _origScope13; } this.subTemplates['_callee-uses-foo'].call(this, Object.assign(Object.create(context), scope), Object.assign({}, extra, {parentNode: c__0})); scope.foo = 'bbb'; this.subTemplates['_callee-uses-foo'].call(this, Object.assign(Object.create(context), scope), Object.assign({}, extra, {parentNode: c__0})); scope[utils.zero] = c__0; } this.subTemplates['_callee-asc'].call(this, scope, Object.assign({}, extra, {parentNode: c1})); scope = _origScope10; } } scope = _origScope5; this.subTemplates['_callee-asc-toto'].call(this, Object.assign(Object.create(context), scope), Object.assign({}, extra, {parentNode: c1})); return vn1; }" `; exports[`properly support svg add proper namespace to g tags 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let utils = this.constructor.utils; var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('g', p1, c1); var _2 = '50'; var _3 = '50'; var _4 = '4'; var _5 = 'green'; var _6 = '1'; var _7 = 'yellow'; let c8 = [], p8 = {key:8,attrs:{cx: _2,cy: _3,r: _4,stroke: _5,\\"stroke-width\\": _6,fill: _7}}; var vn8 = h('circle', p8, c8); c1.push(vn8); c1.push({text: \` \`}); utils.addNameSpace(vn1); return vn1; }" `; exports[`properly support svg add proper namespace to svg 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let utils = this.constructor.utils; var h = this.h; var _1 = '100px'; var _2 = '90px'; let c3 = [], p3 = {key:3,attrs:{width: _1,height: _2}}; var vn3 = h('svg', p3, c3); var _4 = '50'; var _5 = '50'; var _6 = '4'; var _7 = 'green'; var _8 = '1'; var _9 = 'yellow'; let c10 = [], p10 = {key:10,attrs:{cx: _4,cy: _5,r: _6,stroke: _7,\\"stroke-width\\": _8,fill: _9}}; var vn10 = h('circle', p10, c10); c3.push(vn10); c3.push({text: \` \`}); utils.addNameSpace(vn3); return vn3; }" `; exports[`special cases for some boolean html attributes/properties input type= checkbox, with t-att-checked 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; var _1 = 'checkbox'; var _2 = scope['flag']; let c3 = [], p3 = {key:3,attrs:{type: _1,checked: _2},props:{checked: _2}}; var vn3 = h('input', p3, c3); return vn3; }" `; exports[`special cases for some boolean html attributes/properties various boolean html attributes 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); var _2 = 'checkbox'; var _3 = 'checked'; let c4 = [], p4 = {key:4,attrs:{type: _2,checked: _3},props:{checked: _3}}; var vn4 = h('input', p4, c4); c1.push(vn4); var _5 = 'checked'; let c6 = [], p6 = {key:6,attrs:{checked: _5}}; var vn6 = h('input', p6, c6); c1.push(vn6); var _7 = 'checked'; let c8 = [], p8 = {key:8,attrs:{checked: _7}}; var vn8 = h('div', p8, c8); c1.push(vn8); var _9 = 'selected'; let c10 = [], p10 = {key:10,attrs:{selected: _9}}; var vn10 = h('div', p10, c10); c1.push(vn10); var _11 = 'selected'; var _12 = '1'; let c13 = [], p13 = {key:13,attrs:{selected: _11,other: _12},props:{selected: _11}}; var vn13 = h('option', p13, c13); c1.push(vn13); var _14 = 'readonly'; let c15 = [], p15 = {key:15,attrs:{readonly: _14},props:{readonly: _14}}; var vn15 = h('input', p15, c15); c1.push(vn15); var _16 = 'disabled'; let c17 = [], p17 = {key:17,attrs:{disabled: _16},props:{disabled: _16}}; var vn17 = h('button', p17, c17); c1.push(vn17); return vn1; }" `; exports[`static templates div with a class attribute 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" var h = this.h; let _2 = {'abc':true}; let c3 = [], p3 = {key:3,class:_2}; var vn3 = h('div', p3, c3); c3.push({text: \`word\`}); return vn3; }" `; exports[`static templates div with a empty class attribute 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" var h = this.h; let c2 = [], p2 = {key:2}; var vn2 = h('div', p2, c2); c2.push({text: \`word\`}); return vn2; }" `; exports[`static templates div with a span child node 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); let c2 = [], p2 = {key:2}; var vn2 = h('span', p2, c2); c1.push(vn2); c2.push({text: \`word\`}); return vn1; }" `; exports[`static templates div with a text node 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); c1.push({text: \`word\`}); return vn1; }" `; exports[`static templates empty div 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); return vn1; }" `; exports[`static templates properly handle comments 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); c1.push({text: \`hello \`}); c1.push(h('!', \` comment\`)); c1.push({text: \`owl\`}); return vn1; }" `; exports[`static templates simple dynamic value 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); let result; var h = this.h; var _1 = scope['text']; if (_1 || _1 === 0) { var vn2 = {text: _1}; result = vn2 } return result; }" `; exports[`static templates simple string 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let result; var h = this.h; var vn1 = {text: \`hello vdom\`}; result = vn1; return result; }" `; exports[`static templates simple string, with some dynamic value 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); let result; var h = this.h; var vn1 = {text: \`hello \`}; result = vn1; var _2 = scope['text']; if (_2 || _2 === 0) { vn1.text += _2; } return result; }" `; exports[`t-call (template calling basic caller 1`] = ` "function anonymous(context, extra ) { // Template name: \\"caller\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); this.subTemplates['_basic-callee'].call(this, Object.assign(Object.create(context), scope), Object.assign({}, extra, {parentNode: c1})); return vn1; }" `; exports[`t-call (template calling basic caller 2`] = ` "function anonymous(context, extra ) { // Template name: \\"_basic-callee\\" var h = this.h; let c1 = extra.parentNode; let c2 = [], p2 = {key:2}; var vn2 = h('span', p2, c2); c1.push(vn2); c2.push({text: \`ok\`}); }" `; exports[`t-call (template calling basic caller, no parent node 1`] = ` "function anonymous(context, extra ) { // Template name: \\"caller\\" let scope = Object.create(context); let result; var h = this.h; result = [] this.subTemplates['_basic-callee'].call(this, Object.assign(Object.create(context), scope), Object.assign({}, extra, {parentNode: result})); result = result[0] return result; }" `; exports[`t-call (template calling basic caller, no parent node 2`] = ` "function anonymous(context, extra ) { // Template name: \\"_basic-callee\\" var h = this.h; let c1 = extra.parentNode; let c2 = [], p2 = {key:2}; var vn2 = h('div', p2, c2); c1.push(vn2); c2.push({text: \`ok\`}); }" `; exports[`t-call (template calling call with several sub nodes on same line 1`] = ` "function anonymous(context, extra ) { // Template name: \\"main\\" let utils = this.constructor.utils; let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); { const _origScope3 = scope; scope = Object.assign(Object.create(context), scope); { let c__0 = []; let c4 = [], p4 = {key:4}; var vn4 = h('span', p4, c4); c__0.push(vn4); c4.push({text: \`hey\`}); c__0.push({text: \` \`}); let c5 = [], p5 = {key:5}; var vn5 = h('span', p5, c5); c__0.push(vn5); c5.push({text: \`yay\`}); scope[utils.zero] = c__0; } this.subTemplates['SubTemplate'].call(this, scope, Object.assign({}, extra, {parentNode: c1})); scope = _origScope3; } return vn1; }" `; exports[`t-call (template calling call with several sub nodes on same line 2`] = ` "function anonymous(context, extra ) { // Template name: \\"SubTemplate\\" let utils = this.constructor.utils; let scope = Object.create(context); var h = this.h; let c1 = extra.parentNode; let c2 = [], p2 = {key:2}; var vn2 = h('div', p2, c2); c1.push(vn2); c2.push(...scope[utils.zero]); }" `; exports[`t-call (template calling cascading t-call t-raw='0' 1`] = ` "function anonymous(context, extra ) { // Template name: \\"main\\" let utils = this.constructor.utils; let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); { const _origScope10 = scope; scope = Object.assign(Object.create(context), scope); { let c__0 = []; let c11 = [], p11 = {key:11}; var vn11 = h('span', p11, c11); c__0.push(vn11); c11.push({text: \`hey\`}); c__0.push({text: \` \`}); let c12 = [], p12 = {key:12}; var vn12 = h('span', p12, c12); c__0.push(vn12); c12.push({text: \`yay\`}); scope[utils.zero] = c__0; } this.subTemplates['SubTemplate'].call(this, scope, Object.assign({}, extra, {parentNode: c1})); scope = _origScope10; } return vn1; }" `; exports[`t-call (template calling inherit context 1`] = ` "function anonymous(context, extra ) { // Template name: \\"caller\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); scope.foo = 1; this.subTemplates['_callee-uses-foo'].call(this, Object.assign(Object.create(context), scope), Object.assign({}, extra, {parentNode: c1})); return vn1; }" `; exports[`t-call (template calling recursive template, part 1 1`] = ` "function anonymous(context, extra ) { // Template name: \\"recursive\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); let c2 = [], p2 = {key:2}; var vn2 = h('span', p2, c2); c1.push(vn2); c2.push({text: \`hey\`}); if (false) { this.subTemplates['recursive'].call(this, Object.assign(Object.create(context), scope), Object.assign({}, extra, {parentNode: c1})); } return vn1; }" `; exports[`t-call (template calling recursive template, part 1 2`] = ` "function anonymous(context, extra ) { // Template name: \\"recursive\\" let scope = Object.create(context); var h = this.h; let c1 = extra.parentNode; let c3 = [], p3 = {key:3}; var vn3 = h('div', p3, c3); c1.push(vn3); let c4 = [], p4 = {key:4}; var vn4 = h('span', p4, c4); c3.push(vn4); c4.push({text: \`hey\`}); if (false) { this.subTemplates['recursive'].call(this, Object.assign(Object.create(context), scope), Object.assign({}, extra, {parentNode: c3})); } }" `; exports[`t-call (template calling recursive template, part 2 1`] = ` "function anonymous(context, extra ) { // Template name: \\"Parent\\" let utils = this.constructor.utils; let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); { const _origScope10 = scope; scope = Object.assign(Object.create(context), scope); { let c__0 = []; scope.node = scope['root']; scope[utils.zero] = c__0; } this.subTemplates['nodeTemplate'].call(this, scope, Object.assign({}, extra, {parentNode: c1})); scope = _origScope10; } return vn1; }" `; exports[`t-call (template calling recursive template, part 2 2`] = ` "function anonymous(context, extra ) { // Template name: \\"nodeTemplate\\" let utils = this.constructor.utils; let scope = Object.create(context); var h = this.h; let c1 = extra.parentNode; let c2 = [], p2 = {key:2}; var vn2 = h('div', p2, c2); c1.push(vn2); let c3 = [], p3 = {key:3}; var vn3 = h('p', p3, c3); c2.push(vn3); var _4 = scope['node'].val; if (_4 || _4 === 0) { c3.push({text: _4}); } var _5 = scope['node'].children||[]; if (!_5) { throw new Error('QWeb error: Invalid loop expression')} var _6 = _7 = _5; if (!(_5 instanceof Array)) { _6 = Object.keys(_5); _7 = Object.values(_5); } var _length6 = _6.length; const _origScope8 = scope; scope = Object.assign(Object.create(context), scope); for (let i1 = 0; i1 < _length6; i1++) { scope.subtree_first = i1 === 0 scope.subtree_last = i1 === _length6 - 1 scope.subtree_index = i1 scope.subtree = _6[i1] scope.subtree_value = _7[i1] { const _origScope9 = scope; scope = Object.assign(Object.create(context), scope); { let c__0 = []; scope.node = scope['subtree']; scope[utils.zero] = c__0; } this.subTemplates['nodeTemplate'].call(this, scope, Object.assign({}, extra, {parentNode: c2})); scope = _origScope9; } } scope = _origScope8; }" `; exports[`t-call (template calling recursive template, part 3 1`] = ` "function anonymous(context, extra ) { // Template name: \\"Parent\\" let utils = this.constructor.utils; let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); { const _origScope10 = scope; scope = Object.assign(Object.create(context), scope); { let c__0 = []; scope.node = scope['root']; scope[utils.zero] = c__0; } this.subTemplates['nodeTemplate'].call(this, scope, Object.assign({}, extra, {parentNode: c1})); scope = _origScope10; } return vn1; }" `; exports[`t-call (template calling recursive template, part 3 2`] = ` "function anonymous(context, extra ) { // Template name: \\"nodeTemplate\\" let utils = this.constructor.utils; let scope = Object.create(context); var h = this.h; let c1 = extra.parentNode; let c2 = [], p2 = {key:2}; var vn2 = h('div', p2, c2); c1.push(vn2); let c3 = [], p3 = {key:3}; var vn3 = h('p', p3, c3); c2.push(vn3); var _4 = scope['node'].val; if (_4 || _4 === 0) { c3.push({text: _4}); } var _5 = scope['node'].children||[]; if (!_5) { throw new Error('QWeb error: Invalid loop expression')} var _6 = _7 = _5; if (!(_5 instanceof Array)) { _6 = Object.keys(_5); _7 = Object.values(_5); } var _length6 = _6.length; const _origScope8 = scope; scope = Object.assign(Object.create(context), scope); for (let i1 = 0; i1 < _length6; i1++) { scope.subtree_first = i1 === 0 scope.subtree_last = i1 === _length6 - 1 scope.subtree_index = i1 scope.subtree = _6[i1] scope.subtree_value = _7[i1] { const _origScope9 = scope; scope = Object.assign(Object.create(context), scope); { let c__0 = []; scope.node = scope['subtree']; scope[utils.zero] = c__0; } this.subTemplates['nodeTemplate'].call(this, scope, Object.assign({}, extra, {parentNode: c2})); scope = _origScope9; } } scope = _origScope8; }" `; exports[`t-call (template calling scoped parameters 1`] = ` "function anonymous(context, extra ) { // Template name: \\"caller\\" let utils = this.constructor.utils; let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); { const _origScope2 = scope; scope = Object.assign(Object.create(context), scope); { let c__0 = []; scope.foo = 42; scope[utils.zero] = c__0; } this.subTemplates['_basic-callee'].call(this, scope, Object.assign({}, extra, {parentNode: c1})); scope = _origScope2; } if (scope.foo || scope.foo === 0) { c1.push({text: scope.foo}); } return vn1; }" `; exports[`t-call (template calling t-call with t-if 1`] = ` "function anonymous(context, extra ) { // Template name: \\"caller\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); if (scope['flag']) { this.subTemplates['sub'].call(this, Object.assign(Object.create(context), scope), Object.assign({}, extra, {parentNode: c1})); } return vn1; }" `; exports[`t-call (template calling t-call with t-if 2`] = ` "function anonymous(context, extra ) { // Template name: \\"sub\\" var h = this.h; let c1 = extra.parentNode; let c2 = [], p2 = {key:2}; var vn2 = h('span', p2, c2); c1.push(vn2); c2.push({text: \`ok\`}); }" `; exports[`t-call (template calling t-call with t-set inside and outside 1`] = ` "function anonymous(context, extra ) { // Template name: \\"main\\" let utils = this.constructor.utils; let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); var _2 = scope['list']; if (!_2) { throw new Error('QWeb error: Invalid loop expression')} var _3 = _4 = _2; if (!(_2 instanceof Array)) { _3 = Object.keys(_2); _4 = Object.values(_2); } var _length3 = _3.length; const _origScope5 = scope; scope = Object.assign(Object.create(context), scope); for (let i1 = 0; i1 < _length3; i1++) { scope.v_first = i1 === 0 scope.v_last = i1 === _length3 - 1 scope.v_index = i1 scope.v = _3[i1] scope.v_value = _4[i1] scope.val = scope['v'].val; { const _origScope8 = scope; scope = Object.assign(Object.create(context), scope); { let c__0 = []; scope.val3 = scope.val*3; scope[utils.zero] = c__0; } this.subTemplates['sub'].call(this, scope, Object.assign({}, extra, {parentNode: c1})); scope = _origScope8; } } scope = _origScope5; return vn1; }" `; exports[`t-call (template calling t-call with t-set inside and outside. 2 1`] = ` "function anonymous(context, extra ) { // Template name: \\"wrapper\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('p', p1, c1); scope.w = 'fromwrapper'; this.subTemplates['main'].call(this, Object.assign(Object.create(context), scope), Object.assign({}, extra, {parentNode: c1})); return vn1; }" `; exports[`t-call (template calling t-call, global templates 1`] = ` "function anonymous(context, extra ) { // Template name: \\"abcd\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); this.subTemplates['john'].call(this, Object.assign(Object.create(context), scope), Object.assign({}, extra, {parentNode: c1})); return vn1; }" `; exports[`t-call (template calling with unused body 1`] = ` "function anonymous(context, extra ) { // Template name: \\"caller\\" let utils = this.constructor.utils; let scope = Object.create(context); let result; var h = this.h; { const _origScope3 = scope; scope = Object.assign(Object.create(context), scope); { let c__0 = []; c__0.push({text: \`WHEEE\`}); scope[utils.zero] = c__0; } result = [] this.subTemplates['_basic-callee'].call(this, scope, Object.assign({}, extra, {parentNode: result})); result = result[0] scope = _origScope3; } return result; }" `; exports[`t-call (template calling with unused setbody 1`] = ` "function anonymous(context, extra ) { // Template name: \\"caller\\" let utils = this.constructor.utils; let scope = Object.create(context); let result; var h = this.h; { const _origScope3 = scope; scope = Object.assign(Object.create(context), scope); { let c__0 = []; scope.qux = 3; scope[utils.zero] = c__0; } result = [] this.subTemplates['_basic-callee'].call(this, scope, Object.assign({}, extra, {parentNode: result})); result = result[0] scope = _origScope3; } return result; }" `; exports[`t-call (template calling with used body 1`] = ` "function anonymous(context, extra ) { // Template name: \\"caller\\" let utils = this.constructor.utils; let scope = Object.create(context); let result; var h = this.h; { const _origScope3 = scope; scope = Object.assign(Object.create(context), scope); { let c__0 = []; c__0.push({text: \`ok\`}); scope[utils.zero] = c__0; } result = [] this.subTemplates['_callee-printsbody'].call(this, scope, Object.assign({}, extra, {parentNode: result})); result = result[0] scope = _origScope3; } return result; }" `; exports[`t-call (template calling with used set body 1`] = ` "function anonymous(context, extra ) { // Template name: \\"caller\\" let utils = this.constructor.utils; let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('span', p1, c1); { const _origScope3 = scope; scope = Object.assign(Object.create(context), scope); { let c__0 = []; scope.foo = 'ok'; scope[utils.zero] = c__0; } this.subTemplates['_callee-uses-foo'].call(this, scope, Object.assign({}, extra, {parentNode: c1})); scope = _origScope3; } return vn1; }" `; exports[`t-esc escaping on a node 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('span', p1, c1); var _2 = 'ok'; if (_2 || _2 === 0) { c1.push({text: _2}); } return vn1; }" `; exports[`t-esc escaping on a node with a body 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('span', p1, c1); var _2 = 'ok'; if (_2 || _2 === 0) { c1.push({text: _2}); } else { c1.push({text: \`nope\`}); } return vn1; }" `; exports[`t-esc escaping on a node with a body, as a default 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('span', p1, c1); var _2 = scope['var']; if (_2 || _2 === 0) { c1.push({text: _2}); } else { c1.push({text: \`nope\`}); } return vn1; }" `; exports[`t-esc literal 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('span', p1, c1); var _2 = 'ok'; if (_2 || _2 === 0) { c1.push({text: _2}); } return vn1; }" `; exports[`t-esc t-esc is escaped 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let utils = this.constructor.utils; let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); const c2 = new utils.VDomArray(); let c3 = [], p3 = {key:3}; var vn3 = h('p', p3, c3); c2.push(vn3); c3.push({text: \`escaped\`}); scope.var = c2 if (scope.var || scope.var === 0) { const _origScope4 = scope; scope = Object.assign(Object.create(context), scope); scope.var = scope.var instanceof utils.VDomArray ? utils.vDomToString(scope.var) : scope.var; c1.push({text: scope.var}); scope = _origScope4; } return vn1; }" `; exports[`t-esc t-esc=0 is escaped 1`] = ` "function anonymous(context, extra ) { // Template name: \\"testCaller\\" let utils = this.constructor.utils; let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); { const _origScope3 = scope; scope = Object.assign(Object.create(context), scope); { let c__0 = []; let c4 = [], p4 = {key:4}; var vn4 = h('p', p4, c4); c__0.push(vn4); c4.push({text: \`escaped\`}); scope[utils.zero] = c__0; } this.subTemplates['test'].call(this, scope, Object.assign({}, extra, {parentNode: c1})); scope = _origScope3; } return vn1; }" `; exports[`t-esc variable 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('span', p1, c1); var _2 = scope['var']; if (_2 || _2 === 0) { c1.push({text: _2}); } return vn1; }" `; exports[`t-if boolean value condition elif 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); if (scope['color']=='black') { c1.push({text: \`black pearl\`}); } else if (scope['color']=='yellow') { c1.push({text: \`yellow submarine\`}); } else if (scope['color']=='red') { c1.push({text: \`red is dead\`}); } else { c1.push({text: \`beer\`}); } return vn1; }" `; exports[`t-if boolean value condition else 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); let c2 = [], p2 = {key:2}; var vn2 = h('span', p2, c2); c1.push(vn2); c2.push({text: \`begin\`}); if (scope['condition']) { c1.push({text: \`ok\`}); } else { c1.push({text: \`ok-else\`}); } let c3 = [], p3 = {key:3}; var vn3 = h('span', p3, c3); c1.push(vn3); c3.push({text: \`end\`}); return vn1; }" `; exports[`t-if boolean value condition false else 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); let c2 = [], p2 = {key:2}; var vn2 = h('span', p2, c2); c1.push(vn2); c2.push({text: \`begin\`}); if (scope['condition']) { c1.push({text: \`fail\`}); } else { c1.push({text: \`fail-else\`}); } let c3 = [], p3 = {key:3}; var vn3 = h('span', p3, c3); c1.push(vn3); c3.push({text: \`end\`}); return vn1; }" `; exports[`t-if boolean value condition missing 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('span', p1, c1); if (scope['condition']) { c1.push({text: \`fail\`}); } return vn1; }" `; exports[`t-if boolean value false condition 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); if (scope['condition']) { c1.push({text: \`ok\`}); } return vn1; }" `; exports[`t-if boolean value true condition 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); if (scope['condition']) { c1.push({text: \`ok\`}); } return vn1; }" `; exports[`t-if can use some boolean operators in expressions 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); if (scope['cond1']&&scope['cond2']) { c1.push({text: \`and\`}); } if (scope['cond1']&&scope['cond3']) { c1.push({text: \`nope\`}); } if (scope['cond1']||scope['cond3']) { c1.push({text: \`or\`}); } if (scope['cond3']||scope['cond4']) { c1.push({text: \`nope\`}); } if (scope['m']>3) { c1.push({text: \`mgt\`}); } if (scope['n']>3) { c1.push({text: \`ngt\`}); } if (scope['m']<3) { c1.push({text: \`mlt\`}); } if (scope['n']<3) { c1.push({text: \`nlt\`}); } return vn1; }" `; exports[`t-if t-esc with t-elif 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); if (false) { c1.push({text: \`abc\`}); } else { var _2 = 'x'; if (_2 || _2 === 0) { c1.push({text: _2}); } } return vn1; }" `; exports[`t-if t-esc with t-if 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); if (true) { var _2 = 'x'; if (_2 || _2 === 0) { c1.push({text: _2}); } } return vn1; }" `; exports[`t-if t-set, then t-elif, part 3 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); scope.y = false; scope.x = scope.y; if (scope.x) { let c2 = [], p2 = {key:2}; var vn2 = h('span', p2, c2); c1.push(vn2); c2.push({text: \`AAA\`}); } else if (!scope.x) { let c3 = [], p3 = {key:3}; var vn3 = h('span', p3, c3); c1.push(vn3); c3.push({text: \`BBB\`}); } return vn1; }" `; exports[`t-if t-set, then t-if 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); scope.title = 'test'; if (scope.title) { if (scope.title || scope.title === 0) { c1.push({text: scope.title}); } } return vn1; }" `; exports[`t-if t-set, then t-if, part 2 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('div', p1, c1); scope.y = true; scope.x = scope.y; if (scope.x) { let c2 = [], p2 = {key:2}; var vn2 = h('span', p2, c2); c1.push(vn2); c2.push({text: \`COUCOU\`}); } return vn1; }" `; exports[`t-key can use t-key directive on a node 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; const nodeKey1 = scope['beer'].id; let c2 = [], p2 = {key:nodeKey1}; var vn2 = h('div', p2, c2); var _3 = scope['beer'].name; if (_3 || _3 === 0) { c2.push({text: _3}); } return vn2; }" `; exports[`t-key t-key directive in a list 1`] = ` "function anonymous(context, extra ) { // Template name: \\"test\\" let scope = Object.create(context); var h = this.h; let c1 = [], p1 = {key:1}; var vn1 = h('ul', p1, c1); var _2 = scope['beers']; if (!_2) { throw new Error('QWeb error: Invalid loop expression')} var _3 = _4 = _2; if (!(_2 instanceof Array)) { _3 = Object.keys(_2); _4 = Object.values(_2); } var _length3 = _3.length; const _origScope5 = scope; scope = Object.assign(Object.create(context), scope); for (let i1 = 0; i1 < _length3; i1++) { scope.beer_first = i1 === 0 scope.beer_last = i1 === _length3 - 1 scope.beer_index = i1 scope.beer = _3[i1] scope.beer_value = _4[i1] const nodeKey6 = scope['beer'].id; let c7 = [], p7 = {key:nodeKey6}; var vn7 = h('li', p7, c7); c1.push(vn7); var _8 = scope['beer'].name; if (_8 || _8 === 0) { c7.push({text: _8}); } } scope = _origScope5; return vn1; }" `; exports[`t-key t-key directive in a list 2`] = `"