Searched refs:body_block (Results 1 – 4 of 4) sorted by relevance
/external/v8/src/parsing/ |
D | parser-base.h | 5869 BlockT body_block = impl()->NullStatement(); in ParseForEachStatementWithDeclarations() local 5880 impl()->DesugarBindingInForEachStatement(for_info, &body_block, in ParseForEachStatementWithDeclarations() 5882 body_block->statements()->Add(body, zone()); in ParseForEachStatementWithDeclarations() 5886 body_block->set_scope(inner_block_scope->FinalizeBlockScope()); in ParseForEachStatementWithDeclarations() 5891 loop, each_variable, enumerable, body_block); in ParseForEachStatementWithDeclarations() 6156 BlockT body_block = impl()->NullStatement(); in ParseForAwaitStatement() local 6157 impl()->DesugarBindingInForEachStatement(&for_info, &body_block, in ParseForAwaitStatement() 6159 body_block->statements()->Add(body, zone()); in ParseForAwaitStatement() 6160 body_block->set_scope(scope()->FinalizeBlockScope()); in ParseForAwaitStatement() 6161 body = body_block; in ParseForAwaitStatement()
|
D | parser.h | 374 void DesugarBindingInForEachStatement(ForInfo* for_info, Block** body_block,
|
D | parser.cc | 1910 Block** body_block, in DesugarBindingInForEachStatement() argument 1962 *body_block = factory()->NewBlock(3, false); in DesugarBindingInForEachStatement() 1963 (*body_block)->statements()->Add(each_initialization_block, zone()); in DesugarBindingInForEachStatement()
|
D | preparser.h | 1424 ForInfo* for_info, PreParserStatement* body_block,
|