mirror of
https://github.com/oven-sh/bun
synced 2026-02-17 06:12:08 +00:00
* meta: ensure there's a single 'bun' import per file in zig * undo this change in codegen
8 lines
175 B
Zig
8 lines
175 B
Zig
const JSC = bun.JSC;
|
|
|
|
pub const ScriptExecutionContext = extern struct {
|
|
main_file_path: JSC.ZigString,
|
|
is_macro: bool = false,
|
|
js_global_object: bool = false,
|
|
};
|