Skip to content

Commit d815eff

Browse files
committed
fix lint
1 parent 9795fa6 commit d815eff

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/compiler/binder.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -2983,8 +2983,9 @@ namespace ts {
29832983
addLateBoundAssignmentDeclarationToSymbol(node, sym);
29842984
}
29852985
else {
2986-
if (!isBindableStaticAccessExpression(node.left))
2986+
if (!isBindableStaticAccessExpression(node.left)) {
29872987
return Debug.fail(`Invalid cast. The supplied value ${getTextOfNode(node.left)} was not a BindableStaticAccessExpression.`);
2988+
}
29882989
bindStaticPropertyAssignment(node.left as BindableStaticAccessExpression);
29892990
}
29902991
}

0 commit comments

Comments
 (0)