File tree Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -777,6 +777,10 @@ bool v8__Value__IsUint32Array(const v8::Value& self) { return self.IsUint32Array
777777
778778bool v8__Value__IsInt32Array (const v8::Value& self) { return self.IsInt32Array (); }
779779
780+ bool v8__Value__IsBigInt64Array (const v8::Value& self) { return self.IsBigInt64Array (); }
781+
782+ bool v8__Value__IsBigUint64Array (const v8::Value& self) { return self.IsBigUint64Array (); }
783+
780784bool v8__Value__IsFloat32Array (const v8::Value& self) { return self.IsFloat32Array (); }
781785
782786bool v8__Value__IsFloat64Array (const v8::Value& self) { return self.IsFloat64Array (); }
Original file line number Diff line number Diff line change @@ -410,6 +410,8 @@ bool v8__Value__IsUint16Array(const Value* self);
410410bool v8__Value__IsInt16Array (const Value * self );
411411bool v8__Value__IsUint32Array (const Value * self );
412412bool v8__Value__IsInt32Array (const Value * self );
413+ bool v8__Value__IsBigInt64Array (const Value * self );
414+ bool v8__Value__IsBigUint64Array (const Value * self );
413415bool v8__Value__IsFloat32Array (const Value * self );
414416bool v8__Value__IsFloat64Array (const Value * self );
415417bool v8__Value__IsArrayBuffer (const Value * self );
Original file line number Diff line number Diff line change @@ -2057,6 +2057,14 @@ pub const Value = struct {
20572057 return c .v8__Value__IsInt32Array (self .handle );
20582058 }
20592059
2060+ pub fn isBigInt64Array (self : Self ) bool {
2061+ return c .v8__Value__IsBigInt64Array (self .handle );
2062+ }
2063+
2064+ pub fn isBigUint64Array (self : Self ) bool {
2065+ return c .v8__Value__IsBigUint64Array (self .handle );
2066+ }
2067+
20602068 pub fn isFloat32Array (self : Self ) bool {
20612069 return c .v8__Value__IsFloat32Array (self .handle );
20622070 }
You can’t perform that action at this time.
0 commit comments