diff --git a/Userland/Libraries/LibJS/Runtime/Value.cpp b/Userland/Libraries/LibJS/Runtime/Value.cpp index 52483f3fb7..0dd7bbc2d6 100644 --- a/Userland/Libraries/LibJS/Runtime/Value.cpp +++ b/Userland/Libraries/LibJS/Runtime/Value.cpp @@ -390,6 +390,8 @@ ErrorOr Value::to_string_without_side_effects() const return String::formatted("[object {}]", as_object().class_name()); case ACCESSOR_TAG: return ""_string; + case EMPTY_TAG: + return ""_string; default: VERIFY_NOT_REACHED(); }