fn testRemoveComments(expected: []const u8, source: []const u8) !void
fn testRemoveComments(expected: []const u8, source: []const u8) !void { const result = try removeCommentsAlloc(std.testing.allocator, source, null); defer std.testing.allocator.free(result); try std.testing.expectEqualStrings(expected, result); }