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

Function isBindableStaticElementAccessExpression

test/fixtures/snapshot/typescript.js:16599–16604  ·  view source on GitHub ↗

Any series of property and element accesses, ending in a literal element access

(node, excludeThisKeyword)

Source from the content-addressed store, hash-verified

16597 ts.isBindableStaticAccessExpression = isBindableStaticAccessExpression;
16598 /** Any series of property and element accesses, ending in a literal element access */
16599 function isBindableStaticElementAccessExpression(node, excludeThisKeyword) {
16600 return isLiteralLikeElementAccess(node)
16601 && ((!excludeThisKeyword && node.expression.kind === 108 /* SyntaxKind.ThisKeyword */) ||
16602 isEntityNameExpression(node.expression) ||
16603 isBindableStaticAccessExpression(node.expression, /*excludeThisKeyword*/ true));
16604 }
16605 ts.isBindableStaticElementAccessExpression = isBindableStaticElementAccessExpression;
16606 function isBindableStaticNameExpression(node, excludeThisKeyword) {
16607 return isEntityNameExpression(node) || isBindableStaticAccessExpression(node, excludeThisKeyword);

Callers 1

Calls 3

isEntityNameExpressionFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…