Fix banned word violation in CodeCoverage.zig

Replace std.StringHashMap with bun.StringHashMap as required by the
codebase style guide. bun.StringHashMap has a faster `eql` implementation.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Claude Bot
2025-11-02 05:42:21 +00:00
parent dead574e16
commit ea17e2f23f

View File

@@ -357,7 +357,7 @@ pub const Report = struct {
try writer.writeAll(" <packages>\n");
// Group reports by directory
var package_map = std.StringHashMap(std.ArrayListUnmanaged(*const Report)).init(this.allocator);
var package_map = bun.StringHashMap(std.ArrayListUnmanaged(*const Report)).init(this.allocator);
defer {
var iter = package_map.iterator();
while (iter.next()) |entry| {