fn markAllFilesDirty(w: *Watch) void
fn markAllFilesDirty(w: *Watch) void { const maker = w.maker; for (switch (builtin.os.tag) { .windows => w.os.handle_table.keys(), else => w.os.handle_table.values(), }) |item| { const reaction_set = switch (builtin.os.tag) { .linux, .windows => item.reaction_set, else => item, }; for (reaction_set.values()) |step_set| { for (step_set.keys()) |step_index| { const step = maker.stepByIndex(step_index); _ = maker.invalidateResult(step); } } } }