(node *Node)
| 3007 | } |
| 3008 | |
| 3009 | func IsVariableLike(node *Node) bool { |
| 3010 | switch node.Kind { |
| 3011 | case KindBindingElement, KindEnumMember, KindParameter, KindPropertyAssignment, KindPropertyDeclaration, |
| 3012 | KindPropertySignature, KindShorthandPropertyAssignment, KindVariableDeclaration: |
| 3013 | return true |
| 3014 | } |
| 3015 | return false |
| 3016 | } |
| 3017 | |
| 3018 | func HasInitializer(node *Node) bool { |
| 3019 | switch node.Kind { |
no outgoing calls
no test coverage detected