(byteLength, maxByteLength)
| 71 | DataView.prototype.setBigInt64, 8, true]]; |
| 72 | |
| 73 | function CreateResizableArrayBuffer(byteLength, maxByteLength) { |
| 74 | return new ArrayBuffer(byteLength, {maxByteLength: maxByteLength}); |
| 75 | } |
| 76 | |
| 77 | function CreateGrowableSharedArrayBuffer(byteLength, maxByteLength) { |
| 78 | return new SharedArrayBuffer(byteLength, {maxByteLength: maxByteLength}); |
no outgoing calls
no test coverage detected
searching dependent graphs…