Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
CraigMacomber committed Jan 31, 2025
1 parent fe48d98 commit cafd994
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/compiler/transformers/declarations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1678,13 +1678,13 @@ export function transformDeclarations(context: TransformationContext): Transform
return factory.updateHeritageClause(clause, visitNodes(factory.createNodeArray(filter(clause.types, t => isEntityNameExpression(t.expression) || t.expression.kind === SyntaxKind.NullKeyword)), visitDeclarationSubtree, isExpressionWithTypeArguments));
}));
return cleanup(factory.updateClassDeclaration(
input,
modifiers,
input.name,
typeParameters,
heritageClauses,
members,
));
input,
modifiers,
input.name,
typeParameters,
heritageClauses,
members,
));
}
else {
const heritageClauses = transformHeritageClauses(input.heritageClauses);
Expand Down

0 comments on commit cafd994

Please sign in to comment.