mirror of
https://github.com/Samsung/escargot.git
synced 2026-06-22 10:01:50 +00:00
implement basic of JSGetterSetter
Signed-off-by: seonghyun kim <sh8281.kim@samsung.com>
This commit is contained in:
parent
389286631b
commit
24ff648fe7
14 changed files with 364 additions and 153 deletions
|
|
@ -14,7 +14,7 @@ ArrayObject::ArrayObject(ExecutionState& state)
|
|||
|
||||
Value ArrayObject::getLengthSlowCase(ExecutionState& state)
|
||||
{
|
||||
return getOwnProperty(state, ObjectPropertyName(state.context()->staticStrings().length)).value();
|
||||
return getOwnProperty(state, ObjectPropertyName(state.context()->staticStrings().length)).value(state);
|
||||
}
|
||||
|
||||
bool ArrayObject::setLengthSlowCase(ExecutionState& state, const Value& value)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue