implement PropertyName type

Signed-off-by: seonghyun kim <sh8281.kim@samsung.com>
This commit is contained in:
seonghyun kim 2016-12-01 16:53:57 +09:00
commit 782f489712
14 changed files with 131 additions and 46 deletions

View file

@ -27,7 +27,7 @@ Script::ScriptExecuteResult Script::execute(Context* ctx)
ExecutionContext ec(ctx, globalEnvironment, m_topCodeBlock->isStrict());
Value resultValue;
ExecutionState state(ctx, &ec, &resultValue);
ByteCodeIntrepreter::interpret(state, m_topCodeBlock);
ByteCodeInterpreter::interpret(state, m_topCodeBlock);
result.result = resultValue;
return result;
}