LibJS: Add Math.pow()

This commit is contained in:
Linus Groh 2020-04-23 12:36:08 +01:00 committed by Andreas Kling
commit 97366f4dd4
Notes: sideshowbarker 2024-07-19 07:21:46 +09:00
3 changed files with 36 additions and 0 deletions

View file

@ -50,6 +50,7 @@ private:
static Value sin(Interpreter&);
static Value cos(Interpreter&);
static Value tan(Interpreter&);
static Value pow(Interpreter&);
};
}