1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 19:08:10 +00:00

LibJS/JIT: Add builtin for Math.exp()

This commit is contained in:
Andreas Kling 2023-11-24 09:53:52 +01:00
parent 8447544e17
commit afeb551d57
4 changed files with 24 additions and 3 deletions

View file

@ -16,6 +16,7 @@ namespace JS::Bytecode {
O(MathAbs, math_abs, Math, abs, 1) \
O(MathLog, math_log, Math, log, 1) \
O(MathPow, math_pow, Math, pow, 2) \
O(MathExp, math_exp, Math, exp, 1) \
O(MathCeil, math_ceil, Math, ceil, 1) \
O(MathFloor, math_floor, Math, floor, 1) \
O(MathRound, math_round, Math, round, 1) \