Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add growable and resizable buffers #1242

Merged
merged 3 commits into from
Jun 25, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions features/growable-sharedarraybuffer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: Growable SharedArrayBuffer
description: ShareArrayBuffer objects can take a maximum length allowing them to grow in place.
Elchi3 marked this conversation as resolved.
Show resolved Hide resolved
spec: https://tc39.es/ecma262/multipage/structured-data.html#sec-get-sharedarraybuffer.prototype.growable
compat_features:
- javascript.builtins.SharedArrayBuffer.SharedArrayBuffer.maxByteLength_option
- javascript.builtins.SharedArrayBuffer.grow
- javascript.builtins.SharedArrayBuffer.growable
- javascript.builtins.SharedArrayBuffer.maxByteLength
11 changes: 11 additions & 0 deletions features/growable-sharedarraybuffer.yml.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Generated from: growable-sharedarraybuffer.yml
# Do not edit this file by hand. Edit the source file instead!

status:
baseline: false
support:
chrome: "111"
chrome_android: "111"
edge: "111"
safari: "16.4"
safari_ios: "16.4"
8 changes: 8 additions & 0 deletions features/resizable-arraybuffer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: Resizable ArrayBuffer
description: ArrayBuffer objects can take a maximum length allowing them to grow and shrink in place.
Elchi3 marked this conversation as resolved.
Show resolved Hide resolved
spec: https://tc39.es/ecma262/multipage/structured-data.html#sec-get-arraybuffer.prototype.resizable
compat_features:
- javascript.builtins.ArrayBuffer.ArrayBuffer.maxByteLength_option
- javascript.builtins.ArrayBuffer.maxByteLength
- javascript.builtins.ArrayBuffer.resizable
- javascript.builtins.ArrayBuffer.resize
11 changes: 11 additions & 0 deletions features/resizable-arraybuffer.yml.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Generated from: resizable-arraybuffer.yml
# Do not edit this file by hand. Edit the source file instead!

status:
baseline: false
support:
chrome: "111"
chrome_android: "111"
edge: "111"
safari: "16.4"
safari_ios: "16.4"
Loading