implement basic object operation(get,set ownproperty)

Signed-off-by: seonghyun kim <sh8281.kim@samsung.com>
This commit is contained in:
seonghyun kim 2016-11-24 17:54:47 +09:00
commit 3e1787dd85
20 changed files with 747 additions and 22 deletions

View file

@ -87,7 +87,7 @@ ScriptParser::ScriptParserResult ScriptParser::parse(StringView scriptSource)
(int)cb->m_locEnd.line,
(int)cb->m_locEnd.column,
cb->m_canAllocateEnvironmentOnStack ? "Stack" : "Heap",
cb->m_canUseVectorStorage ? "Vector" : "HashMap",
cb->m_canUseIndexedVariableStorage ? "Indexed" : "Named",
(int)cb->m_hasEval, (int)cb->m_hasWith, (int)cb->m_hasYield);
PRINT_TAB()