aboutsummaryrefslogtreecommitdiff
path: root/src/bun.js/script_execution_context.zig
blob: 50f531689d0a7ac1cd983f9098c54a11b3f1d914 (plain) (blame)
1
2
3
4
5
6
7
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,
};