Lines Matching refs:isAwait
1275 ir::AstNode *initNode, ExpressionParseFlags exprFlags, bool isAwait) in ParseForInOf() argument
1302 if (isAwait) { in ParseForInOf()
1327 ir::Expression *leftNode, ExpressionParseFlags exprFlags, bool isAwait) in ParseForInOf() argument
1373 if (isAwait) { in ParseForInOf()
1424 std::tuple<ir::Expression *, ir::Expression *> ParserImpl::ParseForUpdate(bool isAwait) in ParseForUpdate() argument
1426 if (isAwait) { in ParseForUpdate()
1459 bool isAwait = false; in ParseForStatement() local
1465 isAwait = true; in ParseForStatement()
1492 if (isAwait) { in ParseForStatement()
1518 std::tie(rightNode, updateNode) = ParseForUpdate(isAwait); in ParseForStatement()
1524 … std::tie(forKind, initNode, rightNode, updateNode) = ParseForInOf(leftNode, exprFlags, isAwait); in ParseForStatement()
1527 std::tie(forKind, rightNode, updateNode) = ParseForInOf(initNode, exprFlags, isAwait); in ParseForStatement()
1546 … forStatement = AllocNode<ir::ForOfStatement>(loopScope, initNode, rightNode, bodyNode, isAwait); in ParseForStatement()