Lines Matching defs:loop
1886 // First time through the loop.
4932 auto loop = factory()->NewDoWhileStatement(labels, peek_position());
4933 typename Types::Target target(this, loop);
4949 loop->Initialize(cond, body);
4950 return loop;
4959 auto loop = factory()->NewWhileStatement(labels, peek_position());
4960 typename Types::Target target(this, loop);
4968 loop->Initialize(cond, body);
4969 return loop;
5200 auto loop =
5202 typename Types::Target target(this, loop);
5232 loop, each_variable, enumerable, body_block, each_keyword_pos);
5243 // Parsed for-in loop w/ variable declarations.
5284 auto loop =
5286 typename Types::Target target(this, loop);
5312 loop, expression, enumerable, body, each_keyword_pos);
5329 // Standard 'for' loop, we have parsed the initializer at this point.
5330 auto loop = factory()->NewForStatement(labels, stmt_pos);
5331 typename Types::Target target(this, loop);
5340 // for loop must be parsed in a new scope.
5366 loop, init, cond, next, body, inner_scope, for_info, CHECK_OK);
5395 block->statements()->Add(loop, zone());
5397 loop->Initialize(init, cond, next, body);
5400 loop->Initialize(init, cond, next, body);
5401 return loop;