Bug 166476 - [JSC] Implement (Shared)ArrayBuffer.prototype.byteLength
Summary: [JSC] Implement (Shared)ArrayBuffer.prototype.byteLength
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: JavaScriptCore (show other bugs)
Version: WebKit Nightly Build
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Yusuke Suzuki
URL:
Keywords: InRadar
Depends on:
Blocks:
 
Reported: 2016-12-25 09:39 PST by Yusuke Suzuki
Modified: 2017-02-11 14:14 PST (History)
7 users (show)

See Also:


Attachments
Patch (13.52 KB, patch)
2017-02-09 13:51 PST, Yusuke Suzuki
saam: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Yusuke Suzuki 2016-12-25 09:39:22 PST
...
Comment 2 Yusuke Suzuki 2016-12-25 10:00:36 PST
We already have SharedArrayBuffer. So when implementing ArrayBuffer.prototype.byteLength, we should refer to the updated one in SharedArrayBuffer spec.
Comment 4 Radar WebKit Bug Importer 2017-01-30 15:01:37 PST
<rdar://problem/30273638>
Comment 5 JF Bastien 2017-01-30 15:01:56 PST
This seems to be the one reason we're not at 100% in this:
 http://kangax.github.io/compat-table/es2016plus/

Probably worth doing, it's simple.
Comment 6 Yusuke Suzuki 2017-02-09 07:16:28 PST
Start working on this.
Comment 7 Yusuke Suzuki 2017-02-09 13:51:19 PST
Created attachment 301078 [details]
Patch
Comment 8 Saam Barati 2017-02-10 19:33:12 PST
Comment on attachment 301078 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=301078&action=review

r=me

> JSTests/stress/array-buffer-byte-length.js:27
> +    shouldBe(arrayBuffer.byteLength, 42);
> +    shouldBe(sharedArrayBuffer.byteLength, 500);

Can you also add a test where HasOwnProperty(buffer, "byteLength") is false?

> JSTests/stress/array-buffer-byte-length.js:45
> +    shouldThrow(() => {
> +        Object.getOwnPropertyDescriptor(ArrayBuffer.prototype, 'byteLength').get.call(sharedArrayBuffer);
> +    }, `TypeError: Receiver should not be a shared array buffer`);
> +
> +    shouldThrow(() => {
> +        Object.getOwnPropertyDescriptor(SharedArrayBuffer.prototype, 'byteLength').get.call(arrayBuffer);
> +    }, `TypeError: Receiver should be a shared array buffer`);

Can you also add tests for the other assertions:
- !thisValue.isObject()
- !thisValue.arrayBuffer()
Comment 9 Yusuke Suzuki 2017-02-11 14:12:14 PST
Comment on attachment 301078 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=301078&action=review

Thanks!

>> JSTests/stress/array-buffer-byte-length.js:27
>> +    shouldBe(sharedArrayBuffer.byteLength, 500);
> 
> Can you also add a test where HasOwnProperty(buffer, "byteLength") is false?

Added.

>> JSTests/stress/array-buffer-byte-length.js:45
>> +    }, `TypeError: Receiver should be a shared array buffer`);
> 
> Can you also add tests for the other assertions:
> - !thisValue.isObject()
> - !thisValue.arrayBuffer()

Added.
Comment 10 Yusuke Suzuki 2017-02-11 14:14:18 PST
Committed r212196: <http://trac.webkit.org/changeset/212196>