1. fix bug in Object.setPrototype

2. revise rule of generate name of binded function
3. revise order evalutate CallEvalFunction opcode
4. process invalid lhs assignment correctly
5. allow \n\r in string literal
6. implement change property of binding correctly
7. Date.prototype.toGMTString and toUTCString should be same
8. fix bug in Function ctor
9. add stack checking in parseJSONWorker
10. use double_conversion with Number.prototype.toFixed, toPrecision
11. add has8BitContent for RopeString for prevent stackoverflow when invoke child::has8BitContent

Signed-off-by: seonghyun kim <sh8281.kim@samsung.com>
This commit is contained in:
seonghyun kim 2017-03-29 22:35:19 +09:00
commit e7df366d73
22 changed files with 154 additions and 98 deletions

View file

@ -78,7 +78,7 @@ String* RopeString::createRopeString(String* lstr, String* rstr, ExecutionState*
rope->m_contentLength = llen + rlen;
rope->m_left = lstr;
rope->m_right = rstr;
rope->m_has8BitContent = lstr->has8BitContent() && rstr->has8BitContent();
return rope;
}