mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 10:58:56 +00:00
* Remove some dead code * 💀 code * Fix the zig tests * [JS Printer] Print integers faster & less scientific notation on decimals * 💀 dead code * skip * Run all the unit tests
12 lines
285 B
Zig
12 lines
285 B
Zig
const Api = @import("./api/schema.zig").Api;
|
|
const Options = @import("./options.zig");
|
|
var options: Options.BundleOptions = undefined;
|
|
|
|
export fn init() void {
|
|
if (!alloc.needs_setup) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
export fn setOptions(options_ptr: [*c]u8, options_len: c_int) void {}
|