(node, excludeThisKeyword)
| 16604 | } |
| 16605 | ts.isBindableStaticElementAccessExpression = isBindableStaticElementAccessExpression; |
| 16606 | function isBindableStaticNameExpression(node, excludeThisKeyword) { |
| 16607 | return isEntityNameExpression(node) || isBindableStaticAccessExpression(node, excludeThisKeyword); |
| 16608 | } |
| 16609 | ts.isBindableStaticNameExpression = isBindableStaticNameExpression; |
| 16610 | function getNameOrArgument(expr) { |
| 16611 | if (ts.isPropertyAccessExpression(expr)) { |
no test coverage detected
searching dependent graphs…