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:
parent
8447544e17
commit
afeb551d57
4 changed files with 24 additions and 3 deletions
|
@ -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&);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue