LibJS: Add builtin for Math.imul()

This commit is contained in:
Andreas Kling 2025-04-03 11:58:30 +02:00 committed by Andreas Kling
commit 714e8aec8a
Notes: github-actions[bot] 2025-04-03 11:57:40 +00:00
4 changed files with 14 additions and 4 deletions

View file

@ -19,6 +19,7 @@ namespace JS::Bytecode {
O(MathExp, math_exp, Math, exp, 1) \
O(MathCeil, math_ceil, Math, ceil, 1) \
O(MathFloor, math_floor, Math, floor, 1) \
O(MathImul, math_imul, Math, imul, 2) \
O(MathRound, math_round, Math, round, 1) \
O(MathSqrt, math_sqrt, Math, sqrt, 1)