| 1264 | } |
| 1265 | |
| 1266 | static void emit_resolved(PHPLSPContext *ctx, const char *callee_qn, const char *strategy, |
| 1267 | float confidence) { |
| 1268 | emit_resolved_reason(ctx, callee_qn, strategy, confidence, NULL); |
| 1269 | } |
| 1270 | |
| 1271 | static void emit_unresolved(PHPLSPContext *ctx, const char *expr_text, const char *reason) { |
| 1272 | if (!ctx->resolved_calls || !ctx->enclosing_func_qn) |
no test coverage detected