| 82 | } |
| 83 | |
| 84 | static char *cs_node_text_cached(CSLSPContext *ctx, TSNode node) { |
| 85 | return cs_node_text(ctx, node); |
| 86 | } |
| 87 | |
| 88 | static bool cs_node_is(TSNode n, const char *kind) { |
| 89 | if (ts_node_is_null(n)) return false; |
nothing calls this directly
no test coverage detected