LibJS: Add Math.imul()

This commit is contained in:
Idan Horowitz 2021-06-05 01:43:10 +03:00 committed by Linus Groh
commit 9d2e90d569
Notes: sideshowbarker 2024-07-18 16:50:57 +09:00
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);