mirror of
https://github.com/Samsung/escargot.git
synced 2026-06-22 10:01:50 +00:00
12 lines
223 B
C++
12 lines
223 B
C++
#include "Escargot.h"
|
|
#include "ExecutionState.h"
|
|
#include "ExecutionContext.h"
|
|
#include "Context.h"
|
|
|
|
namespace Escargot {
|
|
|
|
void ExecutionState::throwException(const Value& e)
|
|
{
|
|
context()->throwException(*this, e);
|
|
}
|
|
}
|