Determines whether a node is a LeftHandSideExpression based only on its kind.
(node *Node)
| 409 | |
| 410 | // Determines whether a node is a LeftHandSideExpression based only on its kind. |
| 411 | func IsLeftHandSideExpression(node *Node) bool { |
| 412 | return isLeftHandSideExpressionKind(SkipPartiallyEmittedExpressions(node).Kind) |
| 413 | } |
| 414 | |
| 415 | func isUnaryExpressionKind(kind Kind) bool { |
| 416 | switch kind { |
no test coverage detected