internal: make @import("bun") work in zig (#19096)

This commit is contained in:
chloe caruso
2025-04-17 12:32:47 -07:00
committed by GitHub
parent ef17164c69
commit 4ec410e0d7
542 changed files with 640 additions and 600 deletions

View File

@@ -164,7 +164,7 @@ pub fn createParsedShellScript(globalThis: *JSC.JSGlobalObject, callframe: *JSC.
}
const ParsedShellScript = @This();
const bun = @import("root").bun;
const bun = @import("bun");
const shell = bun.shell;
const Interpreter = shell.Interpreter;
const interpreter = @import("./interpreter.zig");