diff options
author | 2022-12-02 20:35:13 -0800 | |
---|---|---|
committer | 2022-12-02 20:35:13 -0800 | |
commit | 9cc03cd71a2e42b489b8b0c837cdb0d1b1d3fa0b (patch) | |
tree | 822f2753f22f0587e21530d0ca4fbdba9e7e187c /src/bun.js/bindings/headers.zig | |
parent | d9f9fc975beb9d5d8fe83f6ed2a084c36846522b (diff) | |
download | bun-9cc03cd71a2e42b489b8b0c837cdb0d1b1d3fa0b.tar.gz bun-9cc03cd71a2e42b489b8b0c837cdb0d1b1d3fa0b.tar.zst bun-9cc03cd71a2e42b489b8b0c837cdb0d1b1d3fa0b.zip |
matchers for less than and greater than (#1573)
* toBeGreaterThan with tests
* toBeGreaterThanOrEqual and tests
* toBeLessThan and toBeLessThanOrEqual with tests
* expect types
* switch expressions
Diffstat (limited to 'src/bun.js/bindings/headers.zig')
-rw-r--r-- | src/bun.js/bindings/headers.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bun.js/bindings/headers.zig b/src/bun.js/bindings/headers.zig index 808fa4fbc..3446a7f55 100644 --- a/src/bun.js/bindings/headers.zig +++ b/src/bun.js/bindings/headers.zig @@ -168,6 +168,7 @@ pub extern fn JSC__JSGlobalObject__startRemoteInspector(arg0: ?*JSC__JSGlobalObj pub extern fn JSC__JSGlobalObject__vm(arg0: ?*JSC__JSGlobalObject) [*c]JSC__VM; pub extern fn JSC__JSValue___then(JSValue0: JSC__JSValue, arg1: ?*JSC__JSGlobalObject, JSValue2: JSC__JSValue, ArgFn3: ?fn (?*JSC__JSGlobalObject, ?*bindings.CallFrame) callconv(.C) JSC__JSValue, ArgFn4: ?fn (?*JSC__JSGlobalObject, ?*bindings.CallFrame) callconv(.C) JSC__JSValue) void; pub extern fn JSC__JSValue__asArrayBuffer_(JSValue0: JSC__JSValue, arg1: ?*JSC__JSGlobalObject, arg2: ?*Bun__ArrayBuffer) bool; +pub extern fn JSC__JSValue__asBigIntCompare(JSValue0: JSC__JSValue, arg1: ?*JSC__JSGlobalObject, JSValue2: JSC__JSValue) u8; pub extern fn JSC__JSValue__asCell(JSValue0: JSC__JSValue) [*c]JSC__JSCell; pub extern fn JSC__JSValue__asInternalPromise(JSValue0: JSC__JSValue) [*c]JSC__JSInternalPromise; pub extern fn JSC__JSValue__asNumber(JSValue0: JSC__JSValue) f64; |