[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 Samuel Degueldre
parent b159a073d9
commit 11d4aae8d2
4 changed files with 144 additions and 144 deletions
@@ -53,8 +53,8 @@ exports[`list of components crash on duplicate key in dev mode 1`] = `
let key1 = 'child';
if (keys1.has(key1)) { throw new Error(\`Got duplicate key in t-foreach: \${key1}\`)}
keys1.add(key1);
const props1 = {}
helpers.validateProps(\`Child\`, props1, ctx)
const props1 = {};
helpers.validateProps(\`Child\`, props1, ctx);
c_block1[i1] = withKey(component(\`Child\`, props1, key + \`__1__\${key1}\`, node, ctx), key1);
}
return list(c_block1);