| 64 | /* ── helpers ────────────────────────────────────────────────────── */ |
| 65 | |
| 66 | static char *php_node_text(PHPLSPContext *ctx, TSNode node) { |
| 67 | return cbm_node_text(ctx->arena, node, ctx->source); |
| 68 | } |
| 69 | |
| 70 | static bool node_is(TSNode n, const char *kind) { |
| 71 | if (ts_node_is_null(n)) |
no test coverage detected