diff --git a/Libraries/LibJS/Runtime/Completion.h b/Libraries/LibJS/Runtime/Completion.h index 01f7b2126d2..0650a7feb5b 100644 --- a/Libraries/LibJS/Runtime/Completion.h +++ b/Libraries/LibJS/Runtime/Completion.h @@ -64,8 +64,8 @@ public: : m_type(type) , m_value(value) { - VERIFY(type != Type::Empty); - VERIFY(!value.is_special_empty_value()); + ASSERT(type != Type::Empty); + ASSERT(!value.is_special_empty_value()); } Completion(ThrowCompletionOr const&);