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

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