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