LibJS: Add all of the DataView.prototype.get* methods

This commit is contained in:
Idan Horowitz 2021-06-14 01:57:15 +03:00 committed by Linus Groh
commit c54b9a6920
Notes: sideshowbarker 2024-07-18 12:17:06 +09:00
6 changed files with 206 additions and 0 deletions

View file

@ -128,10 +128,17 @@ namespace JS {
P(fround) \
P(gc) \
P(get) \
P(getBigInt64) \
P(getBigUint64) \
P(getDate) \
P(getDay) \
P(getFloat32) \
P(getFloat64) \
P(getFullYear) \
P(getHours) \
P(getInt8) \
P(getInt16) \
P(getInt32) \
P(getMilliseconds) \
P(getMinutes) \
P(getMonth) \
@ -142,6 +149,9 @@ namespace JS {
P(getSeconds) \
P(getTime) \
P(getTimezoneOffset) \
P(getUint8) \
P(getUint16) \
P(getUint32) \
P(getUTCDate) \
P(getUTCDay) \
P(getUTCFullYear) \