From 91bfb9f7a8cf48d09e2c07e4cbc7300c0928e09d Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Thu, 11 Dec 2025 18:30:04 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- src/bun.js/event_loop/Sigusr1Handler.zig | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/src/bun.js/event_loop/Sigusr1Handler.zig b/src/bun.js/event_loop/Sigusr1Handler.zig index 38905fb4a9..53358ff2c5 100644 --- a/src/bun.js/event_loop/Sigusr1Handler.zig +++ b/src/bun.js/event_loop/Sigusr1Handler.zig @@ -7,15 +7,6 @@ /// Usage: `kill -USR1 ` to start debugger on port 6499 const Sigusr1Handler = @This(); -const std = @import("std"); -const bun = @import("bun"); -const Environment = bun.Environment; -const Output = bun.Output; - -const jsc = bun.jsc; -const VirtualMachine = jsc.VirtualMachine; -const Debugger = jsc.Debugger; - const log = Output.scoped(.Sigusr1Handler, .hidden); var semaphore: std.Thread.Semaphore = .{}; @@ -207,3 +198,13 @@ comptime { _ = Bun__Sigusr1Handler__uninstall; } } + +const std = @import("std"); + +const bun = @import("bun"); +const Environment = bun.Environment; +const Output = bun.Output; + +const jsc = bun.jsc; +const Debugger = jsc.Debugger; +const VirtualMachine = jsc.VirtualMachine;