1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:37:35 +00:00

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
parent e4d267d4fb
commit c54b9a6920
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) \