Files
owl/tests/compiler/__snapshots__/t_debug_log.test.ts.snap
T

70 lines
1.7 KiB
Plaintext
Raw Normal View History

2020-11-26 16:45:25 +01:00
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`debugging t-debug 1`] = `
"function anonymous(bdom, helpers
) {
2021-11-29 13:22:04 +01:00
let { text, createBlock, list, multi, html, toggler, component, comment } = bdom;
2020-11-26 16:45:25 +01:00
let block1 = createBlock(\`<div><block-child-0/></div>\`);
let block2 = createBlock(\`<span>hey</span>\`);
return function template(ctx, node, key = \\"\\") {
debugger;
let b2;
if (true) {
debugger;
b2 = block2();
}
return block1([], [b2]);
}
}"
`;
2021-10-25 09:30:58 +02:00
exports[`debugging t-debug on sub template 1`] = `
"function anonymous(bdom, helpers
) {
2021-11-29 13:22:04 +01:00
let { text, createBlock, list, multi, html, toggler, component, comment } = bdom;
2021-10-25 09:30:58 +02:00
let block1 = createBlock(\`<p>coucou</p>\`);
return function template(ctx, node, key = \\"\\") {
debugger;
return block1();
}
}"
`;
exports[`debugging t-debug on sub template 2`] = `
"function anonymous(bdom, helpers
) {
2021-11-29 13:22:04 +01:00
let { text, createBlock, list, multi, html, toggler, component, comment } = bdom;
let { getTemplate } = helpers;
const callTemplate_1 = getTemplate(\`sub\`);
2021-10-25 09:30:58 +02:00
let block1 = createBlock(\`<div><block-child-0/></div>\`);
return function template(ctx, node, key = \\"\\") {
let b2 = callTemplate_1.call(this, ctx, node, key + \`__1\`);
2021-10-25 09:30:58 +02:00
return block1([], [b2]);
}
}"
`;
2020-11-26 16:45:25 +01:00
exports[`debugging t-log 1`] = `
"function anonymous(bdom, helpers
) {
2021-11-29 13:22:04 +01:00
let { text, createBlock, list, multi, html, toggler, component, comment } = bdom;
let { isBoundary, withDefault, setContextValue } = helpers;
2020-11-26 16:45:25 +01:00
let block1 = createBlock(\`<div/>\`);
return function template(ctx, node, key = \\"\\") {
ctx = Object.create(ctx);
2021-10-19 11:00:26 +02:00
ctx[isBoundary] = 1
setContextValue(ctx, \\"foo\\", 42);
2020-11-26 16:45:25 +01:00
console.log(ctx['foo']+3);
return block1();
}
}"
`;