[FIX] compiler: add missing ; in some places

This commit is contained in:
Géry Debongnie
2022-01-24 13:25:00 +01:00
committed by Aaron Bohy
parent 6639d361c3
commit 0728c8333d
4 changed files with 144 additions and 144 deletions
@@ -6,8 +6,8 @@ exports[`basics display a nice error if it cannot find component (in dev mode) 1
let { text, createBlock, list, multi, html, toggler, component, comment } = bdom;
return function template(ctx, node, key = \\"\\") {
const props1 = {}
helpers.validateProps(\`SomeMispelledComponent\`, props1, ctx)
const props1 = {};
helpers.validateProps(\`SomeMispelledComponent\`, props1, ctx);
return component(\`SomeMispelledComponent\`, props1, key + \`__1\`, node, ctx);
}
}"