We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 204c25f commit 025b1deCopy full SHA for 025b1de
packages/@lwc/ssr-compiler/src/compile-template/context.ts
@@ -39,8 +39,8 @@ export function createNewContext(templateOptions: TemplateOpts): {
39
module: [] as EsStatement[],
40
templateFn: [] as EsStatement[],
41
};
42
- const previouslyHoistedStatementKeysMod = new Set<unknown>();
43
- const previouslyHoistedStatementKeysTmpl = new Set<unknown>();
+ const hoistedModuleDedupe = new Set<unknown>();
+ const hoistedTemplateDedupe = new Set<unknown>();
44
45
const hoist = {
46
// Anything added here will be inserted at the top of the compiled template's
0 commit comments