LibJS: Add Math.{cos,sin,tan}()

This commit is contained in:
Linus Groh
2020-04-05 21:21:33 +01:00
committed by Andreas Kling
parent 04a36b247b
commit f5dacfbb5b
5 changed files with 79 additions and 0 deletions

View File

@@ -47,6 +47,9 @@ private:
static Value max(Interpreter&);
static Value min(Interpreter&);
static Value trunc(Interpreter&);
static Value sin(Interpreter&);
static Value cos(Interpreter&);
static Value tan(Interpreter&);
};
}