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

LibJS: Inline JS::Value()

I had this out of line for debugging reasons. Put it back inline.
This commit is contained in:
Andreas Kling 2020-04-06 20:30:36 +02:00
parent bdffc9e7fb
commit 4fe14aab3b
2 changed files with 4 additions and 9 deletions

View file

@ -39,14 +39,6 @@
namespace JS {
Value::Value()
: m_type(Type::Empty)
{
// dbg() << "Create empty value";
// dump_backtrace();
}
bool Value::is_array() const
{
return is_object() && as_object().is_array();