Skip to content

Commit

Permalink
Fix new isolated declarations error in TSC.
Browse files Browse the repository at this point in the history
  • Loading branch information
dragomirtitian committed Sep 18, 2024
1 parent d06e874 commit 429c24f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compiler/factory/utilities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1668,7 +1668,7 @@ export function createAccessorPropertySetRedirector(factory: NodeFactory, node:
}

/** @internal */
export function findComputedPropertyNameCacheAssignment(name: ComputedPropertyName) {
export function findComputedPropertyNameCacheAssignment(name: ComputedPropertyName): AssignmentExpression<EqualsToken> & { readonly left: GeneratedIdentifier; } | undefined {
let node = name.expression;
while (true) {
node = skipOuterExpressions(node);
Expand Down

0 comments on commit 429c24f

Please sign in to comment.