1. implement tracing stack when got exception

2. binding function name
3. implement sandbox for isolate throw exception
4. implement object expression
5. implement get, set object operation
6. implement logical and, or operation

Signed-off-by: seonghyun kim <sh8281.kim@samsung.com>
This commit is contained in:
seonghyun kim 2016-12-06 22:22:04 +09:00
commit 288b147659
48 changed files with 1158 additions and 272 deletions

View file

@ -0,0 +1,14 @@
#include "Escargot.h"
#include "StringObject.h"
#include "Context.h"
namespace Escargot {
StringObject::StringObject(ExecutionState& state, String* value)
: Object(state)
, m_primitiveValue(value)
{
setPrototype(state, state.context()->globalObject()->stringPrototype());
}
}