(byteLength, maxByteLength)
| 75 | } |
| 76 | |
| 77 | function CreateGrowableSharedArrayBuffer(byteLength, maxByteLength) { |
| 78 | return new SharedArrayBuffer(byteLength, {maxByteLength: maxByteLength}); |
| 79 | } |
| 80 | |
| 81 | function CreateResizableArrayBufferViaWasm(initial, maximum) { |
| 82 | let mem = new WebAssembly.Memory({initial, maximum}); |
no outgoing calls
no test coverage detected
searching dependent graphs…