We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9b054e commit a01fd4fCopy full SHA for a01fd4f
src/compiler/checker.ts
@@ -23842,7 +23842,7 @@ namespace ts {
23842
}
23843
23844
if (containsMissingType(type) && isAccessExpression(reference) && isPropertyAccessExpression(callExpression.expression)) {
23845
- const callAccess = <PropertyAccessExpression>callExpression.expression;
+ const callAccess = callExpression.expression;
23846
if (isMatchingReference(reference.expression, getReferenceCandidate(callAccess.expression)) &&
23847
isIdentifier(callAccess.name) && callAccess.name.escapedText === "hasOwnProperty" && callExpression.arguments.length === 1) {
23848
const argument = callExpression.arguments[0];
0 commit comments