(node *Node, excludeThisKeyword bool)
| 1350 | } |
| 1351 | |
| 1352 | func IsBindableStaticAccessExpression(node *Node, excludeThisKeyword bool) bool { |
| 1353 | return IsPropertyAccessExpression(node) && |
| 1354 | (!excludeThisKeyword && node.Expression().Kind == KindThisKeyword || IsIdentifier(node.Name()) && IsBindableStaticNameExpression(node.Expression(), true /*excludeThisKeyword*/)) || |
| 1355 | IsBindableStaticElementAccessExpression(node, excludeThisKeyword) |
| 1356 | } |
| 1357 | |
| 1358 | func IsBindableStaticElementAccessExpression(node *Node, excludeThisKeyword bool) bool { |
| 1359 | return IsLiteralLikeElementAccess(node) && |
no test coverage detected