mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
LibJS: Inline JS::Value()
I had this out of line for debugging reasons. Put it back inline.
This commit is contained in:
@@ -58,7 +58,10 @@ public:
|
||||
bool is_nan() const { return is_number() && __builtin_isnan(as_double()); }
|
||||
bool is_infinity() const { return is_number() && __builtin_isinf(as_double()); }
|
||||
|
||||
Value();
|
||||
Value()
|
||||
: m_type(Type::Empty)
|
||||
{
|
||||
}
|
||||
|
||||
explicit Value(bool value)
|
||||
: m_type(Type::Boolean)
|
||||
|
||||
Reference in New Issue
Block a user