MCPcopy Index your code
hub / github.com/nodejs/node / isMethodAccessForCall

Function isMethodAccessForCall

test/fixtures/snapshot/typescript.js:74525–74530  ·  view source on GitHub ↗
(node)

Source from the content-addressed store, hash-verified

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)) {

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…