mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-05 11:17:45 +02:00
* Take into account element length, not byte length
This commit is contained in:
parent
bc95a7dc7f
commit
00496e7bcc
@ -1501,7 +1501,7 @@ var
|
||||
begin
|
||||
if HaveSharedArrayBuffer and (aArray.bufferObj is TJSSharedArrayBuffer) then
|
||||
begin
|
||||
Buf:=TJSSharedArrayBuffer(aArray.bufferObj).slice(aArray.byteOffset,aArray.byteLength);
|
||||
Buf:=TJSSharedArrayBuffer(aArray.bufferObj).slice(aArray.byteOffset,aArray.byteOffset+aArray.ByteLength);
|
||||
if aWordSized then
|
||||
Result:=TJSUInt16Array.New(SharedToNonShared(Buf))
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user