Sort imports in all files (#21119)

Co-authored-by: taylor.fish <contact@taylor.fish>
This commit is contained in:
pfg
2025-07-21 13:26:47 -07:00
committed by GitHub
parent 74d3610d41
commit 83760fc446
820 changed files with 8062 additions and 7467 deletions

View File

@@ -1,3 +1,5 @@
const ParsedShellScript = @This();
pub const js = JSC.Codegen.JSParsedShellScript;
pub const toJS = js.toJS;
pub const fromJS = js.fromJS;
@@ -163,18 +165,22 @@ pub fn createParsedShellScript(globalThis: *JSC.JSGlobalObject, callframe: *JSC.
return parsed_shell_script.this_jsvalue;
}
const ParsedShellScript = @This();
const bun = @import("bun");
const shell = bun.shell;
const Interpreter = shell.Interpreter;
const interpreter = @import("./interpreter.zig");
const EnvMap = shell.EnvMap;
const EnvStr = shell.EnvStr;
const JSC = bun.JSC;
const ShellArgs = interpreter.ShellArgs;
const std = @import("std");
const JSValue = JSC.JSValue;
const interpreter = @import("./interpreter.zig");
const ShellArgs = interpreter.ShellArgs;
const bun = @import("bun");
const assert = bun.assert;
const JSC = bun.JSC;
const JSGlobalObject = JSC.JSGlobalObject;
const JSValue = JSC.JSValue;
const CallFrame = JSC.CallFrame;
const ArgumentsSlice = JSC.CallFrame.ArgumentsSlice;
const assert = bun.assert;
const shell = bun.shell;
const EnvMap = shell.EnvMap;
const EnvStr = shell.EnvStr;
const Interpreter = shell.Interpreter;