mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
48 lines
2.7 KiB
Zig
48 lines
2.7 KiB
Zig
const bindings = @import("./bindings.zig");
|
|
pub usingnamespace @import("../JavaScriptCore.zig");
|
|
|
|
pub const struct_JSC__StringPrototype = bindings.StringPrototype;
|
|
pub const struct_JSC__SetIteratorPrototype = bindings.SetIteratorPrototype;
|
|
pub const struct_JSC__RegExpPrototype = bindings.RegExpPrototype;
|
|
pub const struct_JSC__ObjectPrototype = bindings.ObjectPrototype;
|
|
pub const struct_JSC__MapIteratorPrototype = bindings.MapIteratorPrototype;
|
|
pub const struct_JSC__JSPromisePrototype = bindings.JSPromisePrototype;
|
|
pub const struct_JSC__IteratorPrototype = bindings.IteratorPrototype;
|
|
pub const struct_JSC__GeneratorPrototype = bindings.GeneratorPrototype;
|
|
pub const struct_JSC__GeneratorFunctionPrototype = bindings.GeneratorFunctionPrototype;
|
|
pub const struct_JSC__FunctionPrototype = bindings.FunctionPrototype;
|
|
pub const struct_JSC__BigIntPrototype = bindings.BigIntPrototype;
|
|
pub const struct_JSC__AsyncIteratorPrototype = bindings.AsyncIteratorPrototype;
|
|
pub const struct_JSC__AsyncGeneratorPrototype = bindings.AsyncGeneratorPrototype;
|
|
pub const struct_JSC__AsyncGeneratorFunctionPrototype = bindings.AsyncGeneratorFunctionPrototype;
|
|
pub const struct_JSC__AsyncFunctionPrototype = bindings.AsyncFunctionPrototype;
|
|
pub const struct_JSC__ArrayPrototype = bindings.ArrayPrototype;
|
|
pub const struct_JSC__ArrayIteratorPrototype = bindings.ArrayIteratorPrototype;
|
|
pub const bWTF__URL = bindings.URL;
|
|
pub const bWTF__StringView = bindings.StringView;
|
|
pub const bWTF__StringImpl = bindings.StringImpl;
|
|
pub const bWTF__String = bindings.String;
|
|
pub const bWTF__ExternalStringImpl = bindings.ExternalStringImpl;
|
|
pub const bJSC__VM = bindings.VM;
|
|
pub const bJSC__ThrowScope = bindings.ThrowScope;
|
|
pub const bJSC__SourceOrigin = bindings.SourceOrigin;
|
|
pub const bJSC__SourceCode = bindings.SourceCode;
|
|
pub const bJSC__PropertyName = bindings.PropertyName;
|
|
pub const bJSC__JSString = bindings.JSString;
|
|
pub const bJSC__JSPromise = bindings.JSPromise;
|
|
pub const bJSC__JSObject = bindings.JSObject;
|
|
pub const bJSC__JSModuleRecord = bindings.JSModuleRecord;
|
|
pub const bJSC__JSModuleLoader = bindings.JSModuleLoader;
|
|
pub const bJSC__JSLock = bindings.JSLock;
|
|
pub const bJSC__JSInternalPromise = bindings.JSInternalPromise;
|
|
pub const bJSC__JSGlobalObject = bindings.JSGlobalObject;
|
|
pub const bJSC__JSFunction = bindings.JSFunction;
|
|
pub const bJSC__JSCell = bindings.JSCell;
|
|
pub const bJSC__Identifier = bindings.Identifier;
|
|
pub const bJSC__Exception = bindings.Exception;
|
|
pub const bJSC__CatchScope = bindings.CatchScope;
|
|
pub const bJSC__CallFrame = bindings.CallFrame;
|
|
pub const bInspector__ScriptArguments = bindings.ScriptArguments;
|
|
pub const JSC__JSValue = bindings.JSValue;
|
|
pub const ZigString = bindings.ZigString;
|