1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:37:36 +00:00

LibJS: Add set_exception() and change throw_exception() to take a reference

Sometimes we just want to set m_exception to some value we stored
previously, without really "throwing" it again - that's what
set_exception() does now. Since we have clear_exception(), it does take
a reference, i.e. you don't set_exception(nullptr). For consistency I
updated throw_exception() to do the same.
This commit is contained in:
Linus Groh 2021-04-13 01:02:38 +02:00 committed by Andreas Kling
parent f2abe42ecb
commit 4ee965f916
3 changed files with 8 additions and 13 deletions

View file

@ -86,11 +86,8 @@ public:
void push_interpreter(Interpreter&);
void pop_interpreter(Interpreter&);
Exception* exception()
{
return m_exception;
}
Exception* exception() { return m_exception; }
void set_exception(Exception& exception) { m_exception = &exception; }
void clear_exception() { m_exception = nullptr; }
class InterpreterExecutionScope {
@ -207,10 +204,10 @@ public:
return throw_exception(global_object, T::create(global_object, forward<Args>(args)...));
}
void throw_exception(Exception*);
void throw_exception(Exception&);
void throw_exception(GlobalObject& global_object, Value value)
{
return throw_exception(heap().allocate<Exception>(global_object, value));
return throw_exception(*heap().allocate<Exception>(global_object, value));
}
template<typename T, typename... Args>