(node)
| 74523 | return checkPropertyAccessExpressionOrQualifiedName(node, node.left, leftType, node.right, checkMode); |
| 74524 | } |
| 74525 | function isMethodAccessForCall(node) { |
| 74526 | while (node.parent.kind === 212 /* SyntaxKind.ParenthesizedExpression */) { |
| 74527 | node = node.parent; |
| 74528 | } |
| 74529 | return ts.isCallOrNewExpression(node.parent) && node.parent.expression === node; |
| 74530 | } |
| 74531 | // Lookup the private identifier lexically. |
| 74532 | function lookupSymbolForPrivateIdentifierDeclaration(propName, location) { |
| 74533 | for (var containingClass = ts.getContainingClass(location); !!containingClass; containingClass = ts.getContainingClass(containingClass)) { |
no outgoing calls
no test coverage detected
searching dependent graphs…