Skip to content

Commit a719f66

Browse files
committed
make linter happy
1 parent 6418943 commit a719f66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/checker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26252,7 +26252,7 @@ namespace ts {
2625226252
return checkBinaryLikeExpression(node.left, node.operatorToken, node.right, checkMode, node);
2625326253
}
2625426254

26255-
function checkGrammarNullishCoalesceWithLogicalExpression (node: BinaryExpression) {
26255+
function checkGrammarNullishCoalesceWithLogicalExpression(node: BinaryExpression) {
2625626256
const { left, operatorToken, right } = node;
2625726257
if (operatorToken.kind === SyntaxKind.QuestionQuestionToken) {
2625826258
if (isBinaryExpression(left) && (left.operatorToken.kind === SyntaxKind.BarBarToken || left.operatorToken.kind === SyntaxKind.AmpersandAmpersandToken)) {

0 commit comments

Comments
 (0)