1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:07:35 +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

@ -24,6 +24,7 @@ public:
static ThrowCompletionOr<Value> floor_impl(VM&, Value);
static ThrowCompletionOr<Value> ceil_impl(VM&, Value);
static ThrowCompletionOr<Value> round_impl(VM&, Value);
static ThrowCompletionOr<Value> exp_impl(VM&, Value);
private:
explicit MathObject(Realm&);