aboutsummaryrefslogtreecommitdiff
path: root/src/bun.js/script_execution_context.zig
blob: 551614ccc026cccda08c002bb88203538e2639be (plain) (blame)
1
2
3
4
5
6
7
const JSC = @import("../jsc.zig");

pub const ScriptExecutionContext = extern struct {
    main_file_path: JSC.ZigString,
    is_macro: bool = false,
    js_global_object: bool = false,
};