mirror of
https://github.com/Samsung/escargot.git
synced 2026-06-22 10:01:50 +00:00
implement PropertyName type
Signed-off-by: seonghyun kim <sh8281.kim@samsung.com>
This commit is contained in:
parent
d587becaf3
commit
782f489712
14 changed files with 131 additions and 46 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue