Any series of property and element accesses.
(node, excludeThisKeyword)
| 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) { |
no test coverage detected
searching dependent graphs…