pub fn create(owner: *std.Build, options: CreateOptions) *Module
pub fn create(owner: *std.Build, options: CreateOptions) *Module { const graph = owner.graph; const arena = graph.arena; const m = arena.create(Module) catch @panic("OOM"); m.init(owner, .{ .options = options }); return m; }