(node *Node, excludeThisKeyword bool)
| 1376 | } |
| 1377 | |
| 1378 | func IsBindableStaticNameExpression(node *Node, excludeThisKeyword bool) bool { |
| 1379 | return IsEntityNameExpression(node) || IsBindableStaticAccessExpression(node, excludeThisKeyword) |
| 1380 | } |
| 1381 | |
| 1382 | // Does not handle signed numeric names like `a[+0]` - handling those would require handling prefix unary expressions |
| 1383 | // throughout late binding handling as well, which is awkward (but ultimately probably doable if there is demand) |
no test coverage detected