delete committed generated file (#9717)

This commit is contained in:
Meghan Denny
2024-03-29 15:53:11 -07:00
committed by GitHub
parent 093e9c2499
commit 6bedc23992

View File

@@ -1,36 +0,0 @@
//! This file is generated by src/codegen/js2native-generator.ts based on seen calls to the $zig() JS macro
const JSC = @import("root").bun.JSC;
export fn JS2Zig__createBinding_workaround(global: u64) callconv(.C) JSC.JSValue {
return @import("../node/node_fs_binding.zig").createBinding(@ptrFromInt(global));
}
export fn JS2Zig__createNodeHttp_Binding_workaround(global: u64) callconv(.C) JSC.JSValue {
return @import("../api/bun/h2_frame_parser.zig").createNodeHttp2Binding(@ptrFromInt(global));
}
export fn JS2Zig__OS_create_workaround(global: u64) callconv(.C) JSC.JSValue {
return @import("../node/node_os.zig").OS.create(@ptrFromInt(global));
}
export fn JS2Zig__String_jsGetStringWidth(global: *JSC.JSGlobalObject, call_frame: *JSC.CallFrame) callconv(.C) JSC.JSValue {
return @import("../../string.zig").String.jsGetStringWidth(global, call_frame);
}
export fn JS2Zig__parseArgs(global: *JSC.JSGlobalObject, call_frame: *JSC.CallFrame) callconv(.C) JSC.JSValue {
return @import("../node/util/parse_args.zig").parseArgs(global, call_frame);
}
export fn JS2Zig__QuickAndDirtyJavaScriptSyntaxHighlighter_jsFunctionSyntaxHighlight(global: *JSC.JSGlobalObject, call_frame: *JSC.CallFrame) callconv(.C) JSC.JSValue {
return @import("../../fmt.zig").QuickAndDirtyJavaScriptSyntaxHighlighter.jsFunctionSyntaxHighlight(global, call_frame);
}
export fn JS2Zig__TestingAPIs_shellLex(global: *JSC.JSGlobalObject, call_frame: *JSC.CallFrame) callconv(.C) JSC.JSValue {
return @import("../../shell/shell.zig").TestingAPIs.shellLex(global, call_frame);
}
export fn JS2Zig__TestingAPIs_shellParse(global: *JSC.JSGlobalObject, call_frame: *JSC.CallFrame) callconv(.C) JSC.JSValue {
return @import("../../shell/shell.zig").TestingAPIs.shellParse(global, call_frame);
}
comptime {
_ = &JS2Zig__createBinding_workaround;
_ = &JS2Zig__createNodeHttp_Binding_workaround;
_ = &JS2Zig__OS_create_workaround;
_ = &JS2Zig__String_jsGetStringWidth;
_ = &JS2Zig__parseArgs;
_ = &JS2Zig__QuickAndDirtyJavaScriptSyntaxHighlighter_jsFunctionSyntaxHighlight;
_ = &JS2Zig__TestingAPIs_shellLex;
_ = &JS2Zig__TestingAPIs_shellParse;
}