1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 13:57:35 +00:00

LibJS: Add Math.imul()

This commit is contained in:
Idan Horowitz 2021-06-05 01:43:10 +03:00 committed by Linus Groh
parent de10f0dc6c
commit 9d2e90d569
2 changed files with 13 additions and 0 deletions

View file

@ -47,6 +47,7 @@ private:
JS_DECLARE_NATIVE_FUNCTION(atan2);
JS_DECLARE_NATIVE_FUNCTION(fround);
JS_DECLARE_NATIVE_FUNCTION(hypot);
JS_DECLARE_NATIVE_FUNCTION(imul);
JS_DECLARE_NATIVE_FUNCTION(log);
JS_DECLARE_NATIVE_FUNCTION(log2);
JS_DECLARE_NATIVE_FUNCTION(log10);