Lines Matching defs:init
1367 // Parse a C-style for loop: 'for (<init>; <cond>; <next>) { ... }'
1368 // "for (<init>;" is assumed to have been parser already.
1373 // Same as the above, but handles those cases where <init> is a
1376 int stmt_pos, StatementT init, ForInfo* for_info,
5995 // for (<init>; <cond>; <next>) { ... }
6048 StatementT init =
6052 stmt_pos, init, &for_info, labels, own_labels);
6060 StatementT init = impl()->NullStatement();
6072 init = impl()->BuildInitializationBlock(&for_info.parsing_result);
6117 init = factory()->NewExpressionStatement(expression, lhs_beg_pos);
6129 loop->Initialize(init, cond, next, body);
6250 int stmt_pos, StatementT init, ForInfo* for_info,
6274 loop, init, cond, next, body, inner_scope, *for_info);
6293 DCHECK(!impl()->IsNull(init));
6295 block->statements()->Add(init, zone());
6302 loop->Initialize(init, cond, next, body);