(node: SyntaxNode)
| 71 | ]; |
| 72 | |
| 73 | function isExpression(node: SyntaxNode) { |
| 74 | return EXPRESSION_TYPES.includes(node.type); |
| 75 | } |
| 76 | |
| 77 | // Generated by the following command: |
| 78 | // > curl https://raw.githubusercontent.com/tree-sitter/tree-sitter-c-sharp/master/src/node-types.json \ |