mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
8 lines
191 B
Zig
8 lines
191 B
Zig
const JSC = @import("root").bun.JSC;
|
|
|
|
pub const ScriptExecutionContext = extern struct {
|
|
main_file_path: JSC.ZigString,
|
|
is_macro: bool = false,
|
|
js_global_object: bool = false,
|
|
};
|