mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 13:37:45 +00:00
LibJS/JIT: Add builtin for Math.ceil()
This commit is contained in:
parent
08590adf40
commit
c2ff238467
4 changed files with 24 additions and 3 deletions
|
@ -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(MathCeil, math_ceil, Math, ceil, 1) \
|
||||
O(MathFloor, math_floor, Math, floor, 1) \
|
||||
O(MathSqrt, math_sqrt, Math, sqrt, 1)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue