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

LibJS: Add parseFloat()

This commit is contained in:
Linus Groh 2020-05-17 15:12:34 +01:00 committed by Andreas Kling
parent cc42d75209
commit 6f6b089aa0
3 changed files with 87 additions and 0 deletions

View file

@ -58,6 +58,7 @@ private:
static Value gc(Interpreter&);
static Value is_nan(Interpreter&);
static Value is_finite(Interpreter&);
static Value parse_float(Interpreter&);
Shape* m_empty_object_shape { nullptr };