From c6f246484cbd0606deb9c2b385141122ec0060bc Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Thu, 26 Feb 2026 22:11:27 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- docs/bundler/executables.mdx | 20 ++++++++++---------- src/ast/repl_transforms.zig | 3 +-- 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/docs/bundler/executables.mdx b/docs/bundler/executables.mdx index 5ec27838d3..cf082de497 100644 --- a/docs/bundler/executables.mdx +++ b/docs/bundler/executables.mdx @@ -228,16 +228,16 @@ To build for macOS x64: The order of the `--target` flag does not matter, as long as they're delimited by a `-`. -| --target | Operating System | Architecture | Modern | Baseline | Libc | -| --------------------- | ---------------- | ------------ | ------ | -------- | ----- | -| bun-linux-x64 | Linux | x64 | ✅ | ✅ | glibc | -| bun-linux-arm64 | Linux | arm64 | ✅ | N/A | glibc | -| bun-windows-x64 | Windows | x64 | ✅ | ✅ | - | -| bun-windows-arm64 | Windows | arm64 | ✅ | N/A | - | -| bun-darwin-x64 | macOS | x64 | ✅ | ✅ | - | -| bun-darwin-arm64 | macOS | arm64 | ✅ | N/A | - | -| bun-linux-x64-musl | Linux | x64 | ✅ | ✅ | musl | -| bun-linux-arm64-musl | Linux | arm64 | ✅ | N/A | musl | +| --target | Operating System | Architecture | Modern | Baseline | Libc | +| -------------------- | ---------------- | ------------ | ------ | -------- | ----- | +| bun-linux-x64 | Linux | x64 | ✅ | ✅ | glibc | +| bun-linux-arm64 | Linux | arm64 | ✅ | N/A | glibc | +| bun-windows-x64 | Windows | x64 | ✅ | ✅ | - | +| bun-windows-arm64 | Windows | arm64 | ✅ | N/A | - | +| bun-darwin-x64 | macOS | x64 | ✅ | ✅ | - | +| bun-darwin-arm64 | macOS | arm64 | ✅ | N/A | - | +| bun-linux-x64-musl | Linux | x64 | ✅ | ✅ | musl | +| bun-linux-arm64-musl | Linux | arm64 | ✅ | N/A | musl | On x64 platforms, Bun uses SIMD optimizations which require a modern CPU supporting AVX2 instructions. The `-baseline` diff --git a/src/ast/repl_transforms.zig b/src/ast/repl_transforms.zig index 07eb8f77ee..e61610ff11 100644 --- a/src/ast/repl_transforms.zig +++ b/src/ast/repl_transforms.zig @@ -591,10 +591,9 @@ const Binding = js_ast.Binding; const E = js_ast.E; const Expr = js_ast.Expr; const ExprNodeList = js_ast.ExprNodeList; +const Ref = js_ast.Ref; const S = js_ast.S; const Stmt = js_ast.Stmt; -const Ref = js_ast.Ref; - const G = js_ast.G; const Decl = G.Decl;