mirror of
https://github.com/oven-sh/bun
synced 2026-02-12 11:59:00 +00:00
Sort imports in all files (#21119)
Co-authored-by: taylor.fish <contact@taylor.fish>
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user