Summary
I noticed that the hasPage function in src/cdp/cdp.zig:119 appears to be unused.
Details
- The function has an empty body with no return value
- I searched the codebase and found no call sites for this function
- The adjacent pageWait function is implemented and actively used
Question
- Is this function intended for future use?
- If not, would a PR to remove it be welcome?
Environment
Suggestion
Consider adding refAllDecls test to catch such issues:
test "all declarations compile" {
std.testing.refAllDecls(@This());
}