| 1299 | } |
| 1300 | |
| 1301 | static void emit_resolved_kind(PHPLSPContext *ctx, const char *callee_qn, const char *strategy, |
| 1302 | float confidence, CBMResolvedKind kind) { |
| 1303 | emit_resolved_reason_kind(ctx, callee_qn, strategy, confidence, NULL, kind); |
| 1304 | } |
| 1305 | |
| 1306 | static bool php_dynamic_reference_expr(PHPLSPContext *ctx, TSNode expr) { |
| 1307 | if (ts_node_is_null(expr)) { |
no test coverage detected