(node *Node)
| 164 | } |
| 165 | |
| 166 | func IsBindingPattern(node *Node) bool { |
| 167 | return node.Kind == KindObjectBindingPattern || node.Kind == KindArrayBindingPattern |
| 168 | } |
| 169 | |
| 170 | func IsForInOrOfStatement(node *Node) bool { |
| 171 | return node != nil && (node.Kind == KindForInStatement || node.Kind == KindForOfStatement) |
no outgoing calls
no test coverage detected