-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
buffer: add isSharedArrayBuffer checks
Fixes: #8440 PR-URL: #8510 Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
- Loading branch information
Showing
3 changed files
with
37 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/*global SharedArrayBuffer*/ | ||
'use strict'; | ||
// Flags: --harmony-sharedarraybuffer | ||
|
||
require('../common'); | ||
const assert = require('assert'); | ||
const Buffer = require('buffer').Buffer; | ||
|
||
const sab = new SharedArrayBuffer(24); | ||
const arr1 = new Uint16Array(sab); | ||
const arr2 = new Uint16Array(12); | ||
arr2[0] = 5000; | ||
arr1[0] = 5000; | ||
arr1[1] = 4000; | ||
arr2[1] = 4000; | ||
|
||
const arr_buf = Buffer.from(arr1.buffer); | ||
const ar_buf = Buffer.from(arr2.buffer); | ||
|
||
assert.deepStrictEqual(arr_buf, ar_buf, 0); | ||
|
||
arr1[1] = 6000; | ||
arr2[1] = 6000; | ||
|
||
assert.deepStrictEqual(arr_buf, ar_buf, 0); | ||
|
||
// Checks for calling Buffer.byteLength on a SharedArrayBuffer | ||
|
||
assert.strictEqual(Buffer.byteLength(sab), sab.byteLength, 0); |