LibJS: Add support for Float16Array

Implements TC39 stage three proposal for Float16Arrays:
https://tc39.es/proposal-float16array
This commit is contained in:
rmg-x 2024-11-09 15:29:03 -06:00 committed by Andrew Kaster
commit ea20545853
Notes: github-actions[bot] 2024-11-10 21:49:20 +00:00
49 changed files with 133 additions and 8 deletions

View file

@ -223,6 +223,7 @@ namespace JS {
P(fromEpochSeconds) \
P(fromHex) \
P(fround) \
P(f16round) \
P(gc) \
P(get) \
P(getBigInt64) \
@ -232,6 +233,7 @@ namespace JS {
P(getCollations) \
P(getDate) \
P(getDay) \
P(getFloat16) \
P(getFloat32) \
P(getFloat64) \
P(getFullYear) \
@ -464,6 +466,7 @@ namespace JS {
P(setBigInt64) \
P(setBigUint64) \
P(setDate) \
P(setFloat16) \
P(setFloat32) \
P(setFloat64) \
P(setFromBase64) \