mirror of
https://github.com/Samsung/escargot.git
synced 2026-06-22 10:01:50 +00:00
1. implement ObjectDefineOwnPropertyOperation
2. Add errorcode in ScriptError 3. Fix array length bug 4. Fix ObjectPropertyDescriptor::ObjectPropertyDescriptor(ExecutionState& state, Object* obj) Signed-off-by: seonghyun kim <sh8281.kim@samsung.com>
This commit is contained in:
parent
c024ad87f9
commit
5bca24da82
18 changed files with 244 additions and 125 deletions
|
|
@ -162,6 +162,7 @@ ScriptParser::ScriptParserResult ScriptParser::parse(StringView scriptSource, St
|
|||
error->lineNumber = orgError->lineNumber;
|
||||
error->message = orgError->message;
|
||||
error->name = orgError->name;
|
||||
error->errorCode = orgError->errorCode;
|
||||
}
|
||||
|
||||
ScriptParser::ScriptParserResult result(script, error);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue