From dfabbcece2eb06eae4861ae4efd280a8286f6d95 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Tue, 24 Feb 2026 08:39:34 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- src/string/immutable.zig | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/string/immutable.zig b/src/string/immutable.zig index 7904e8148c..8957d1aa68 100644 --- a/src/string/immutable.zig +++ b/src/string/immutable.zig @@ -2387,11 +2387,6 @@ pub const CodePoint = i32; const string = []const u8; -const escapeHTML_ = @import("./immutable/escapeHTML.zig"); -const escapeRegExp_ = @import("./escapeRegExp.zig"); -const paths_ = @import("./immutable/paths.zig"); -const std = @import("std"); -const unicode = @import("./immutable/unicode.zig"); /// Iterator that yields bytes from a string while skipping ANSI escape sequences. /// Works with both Latin-1 and UTF-8 since ANSI sequences are pure ASCII. pub const ANSISkipper = struct { @@ -2464,6 +2459,11 @@ pub const ANSISkipper = struct { } }; +const escapeHTML_ = @import("./immutable/escapeHTML.zig"); +const escapeRegExp_ = @import("./escapeRegExp.zig"); +const paths_ = @import("./immutable/paths.zig"); +const std = @import("std"); +const unicode = @import("./immutable/unicode.zig"); const visible_ = @import("./immutable/visible.zig"); const bun = @import("bun");