Skip to content

Commit 025b1de

Browse files
divmainwjhsf
andauthored
fix: excessive verbosity
Co-authored-by: Will Harney <62956339+wjhsf@users.noreply.github.com>
1 parent 204c25f commit 025b1de

File tree

1 file changed

+2
-2
lines changed
  • packages/@lwc/ssr-compiler/src/compile-template

1 file changed

+2
-2
lines changed

packages/@lwc/ssr-compiler/src/compile-template/context.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ export function createNewContext(templateOptions: TemplateOpts): {
3939
module: [] as EsStatement[],
4040
templateFn: [] as EsStatement[],
4141
};
42-
const previouslyHoistedStatementKeysMod = new Set<unknown>();
43-
const previouslyHoistedStatementKeysTmpl = new Set<unknown>();
42+
const hoistedModuleDedupe = new Set<unknown>();
43+
const hoistedTemplateDedupe = new Set<unknown>();
4444

4545
const hoist = {
4646
// Anything added here will be inserted at the top of the compiled template's

0 commit comments

Comments
 (0)