escargot/src/runtime/ExecutionState.cpp
2016-12-08 14:53:01 +09:00

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);
}
}