Files
bun.sh/src/bun.js/script_execution_context.zig
Meghan Denny e209ae81dd meta: ensure there's a single 'bun' import per file in zig (#10137)
* meta: ensure there's a single 'bun' import per file in zig

* undo this change in codegen
2024-04-09 22:41:07 -07:00

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,
};