We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46bf174 commit f63ed7cCopy full SHA for f63ed7c
1 file changed
deps/chakrashim/include/v8.h
@@ -2073,6 +2073,8 @@ class V8_EXPORT ArrayBufferView : public Object {
2073
2074
class V8_EXPORT TypedArray : public ArrayBufferView {
2075
public:
2076
+ static constexpr size_t kMaxLength =
2077
+ sizeof(void*) == 4 ? (1u << 30) - 1 : (1u << 31) - 1;
2078
size_t Length();
2079
static TypedArray* Cast(Value* obj);
2080
private:
0 commit comments