1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 14:48:14 +00:00

LibJS: Add Math.clz32()

This commit is contained in:
Linus Groh 2020-05-18 16:04:38 +01:00 committed by Andreas Kling
parent 452dbbc463
commit b3090678a9
3 changed files with 63 additions and 0 deletions

View file

@ -54,6 +54,7 @@ private:
static Value exp(Interpreter&);
static Value expm1(Interpreter&);
static Value sign(Interpreter&);
static Value clz32(Interpreter&);
};
}