Files
bun.sh/src/main_api.zig
Jarred Sumner 336a4b6ac2 Prepare to run unit tests & remove some dead code (#92)
* 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
2021-12-27 18:06:31 -08:00

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 {}