Skip to content

Commit d0eac74

Browse files
committed
Fix lint
1 parent 6f7dce8 commit d0eac74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/utilities.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7419,7 +7419,7 @@ namespace ts {
74197419
export function isFunctionExpressionOrArrowFunction(node: Node): node is FunctionExpression | ArrowFunction {
74207420
return node.kind === SyntaxKind.FunctionExpression || node.kind === SyntaxKind.ArrowFunction;
74217421
}
7422-
7422+
74237423
/**
74247424
* A free identifier is an identifier that can be accessed through name lookup as a local variable.
74257425
* In the expression `x.y`, `x` is a free identifier, but `y` is not.

0 commit comments

Comments
 (0)