Home
last modified time | relevance | path

Searched refs:leftMostAddChild (Results 1 – 1 of 1) sorted by relevance

/external/webkit/JavaScriptCore/parser/
DNodes.cpp816 ExpressionNode* leftMostAddChild = m_expr1; in emitStrcat() local
817 while (leftMostAddChild->isAdd() && leftMostAddChild->resultDescriptor().definitelyIsString()) { in emitStrcat()
818 reverseExpressionList.append(static_cast<AddNode*>(leftMostAddChild)->m_expr2); in emitStrcat()
819 leftMostAddChild = static_cast<AddNode*>(leftMostAddChild)->m_expr1; in emitStrcat()
833 generator.emitNode(leftMostAddChildTempRegister, leftMostAddChild); in emitStrcat()
856 if (leftMostAddChild->isString()) in emitStrcat()