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

Function isBindableStaticAccessExpression

test/fixtures/snapshot/typescript.js:16593–16596  ·  view source on GitHub ↗

Any series of property and element accesses.

(node, excludeThisKeyword)

Source from the content-addressed store, hash-verified

16591 ts.isLiteralLikeElementAccess = isLiteralLikeElementAccess;
16592 /** Any series of property and element accesses. */
16593 function isBindableStaticAccessExpression(node, excludeThisKeyword) {
16594 return ts.isPropertyAccessExpression(node) && (!excludeThisKeyword && node.expression.kind === 108 /* SyntaxKind.ThisKeyword */ || ts.isIdentifier(node.name) && isBindableStaticNameExpression(node.expression, /*excludeThisKeyword*/ true))
16595 || isBindableStaticElementAccessExpression(node, excludeThisKeyword);
16596 }
16597 ts.isBindableStaticAccessExpression = isBindableStaticAccessExpression;
16598 /** Any series of property and element accesses, ending in a literal element access */
16599 function isBindableStaticElementAccessExpression(node, excludeThisKeyword) {

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…