(node *Node)
| 389 | } |
| 390 | |
| 391 | func IsAssertionExpression(node *Node) bool { |
| 392 | kind := node.Kind |
| 393 | return kind == KindTypeAssertionExpression || kind == KindAsExpression |
| 394 | } |
| 395 | |
| 396 | func isLeftHandSideExpressionKind(kind Kind) bool { |
| 397 | switch kind { |
no outgoing calls
no test coverage detected