diff --git a/Libraries/LibJS/Runtime/Value.cpp b/Libraries/LibJS/Runtime/Value.cpp index 70ccefda20..c1b67bcb6d 100644 --- a/Libraries/LibJS/Runtime/Value.cpp +++ b/Libraries/LibJS/Runtime/Value.cpp @@ -125,6 +125,8 @@ String Value::to_string_without_side_effects() const return String::format("[object %s]", as_object().class_name()); case Type::Accessor: return ""; + case Type::NativeProperty: + return ""; default: ASSERT_NOT_REACHED(); }