diff options
Diffstat (limited to 'Libraries/LibJS/Runtime/GlobalObject.h')
-rw-r--r-- | Libraries/LibJS/Runtime/GlobalObject.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Libraries/LibJS/Runtime/GlobalObject.h b/Libraries/LibJS/Runtime/GlobalObject.h index 214a447a25..42a99b37fe 100644 --- a/Libraries/LibJS/Runtime/GlobalObject.h +++ b/Libraries/LibJS/Runtime/GlobalObject.h @@ -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 }; |