Lines Matching refs:startLoc

275     const lexer::SourcePosition startLoc = lexer_->GetToken().Start();
293 structDecl->SetRange({startLoc, endLoc});
299 const lexer::SourcePosition startLoc = lexer_->GetToken().Start();
309 classDecl->SetRange({startLoc, endLoc});
417 lexer::SourcePosition startLoc = lexer_->GetToken().Start();
426 blockNode->SetRange({startLoc, lexer_->GetToken().End()});
445 lexer::SourcePosition startLoc = lexer_->GetToken().Start();
456 breakStatement->SetRange({startLoc, lexer_->GetToken().End()});
479 breakStatement->SetRange({startLoc, lexer_->GetToken().End()});
501 lexer::SourcePosition startLoc = lexer_->GetToken().Start();
507 continueStatement->SetRange({startLoc, lexer_->GetToken().End()});
515 continueStatement->SetRange({startLoc, endLoc});
533 continueStatement->SetRange({startLoc, lexer_->GetToken().End()});
545 lexer::SourcePosition startLoc = lexer_->GetToken().Start();
567 doWhileStatement->SetRange({startLoc, lexer_->GetToken().End()});
581 lexer::SourcePosition startLoc = lexer_->GetToken().Start();
598 func->SetStart(startLoc);
615 func->SetStart(startLoc);
911 lexer::SourcePosition startLoc = lexer_->GetToken().Start();
968 forStatement->SetRange({startLoc, bodyNode->End()});
977 lexer::SourcePosition startLoc = lexer_->GetToken().Start();
1007 ifStatement->SetRange({startLoc, endLoc});
1047 lexer::SourcePosition startLoc = lexer_->GetToken().Start();
1065 returnStatement->SetRange({startLoc, endLoc});
1125 lexer::SourcePosition startLoc = lexer_->GetToken().Start();
1154 switchStatement->SetRange({startLoc, lexer_->GetToken().End()});
1168 lexer::SourcePosition startLoc = lexer_->GetToken().Start();
1179 throwStatement->SetRange({startLoc, endLoc});
1241 lexer::SourcePosition startLoc = lexer_->GetToken().Start();
1281 tryStatement->SetRange({startLoc, endLoc});
1295 const lexer::SourcePosition &startLoc)
1314 declarator->SetRange({startLoc, endLoc});
1357 ir::VariableDeclarator *ParserImpl::ParseVariableDeclarator(ir::Expression *init, lexer::SourcePosition startLoc,
1361 return ParseVariableDeclaratorInitializer(init, flags, startLoc);
1374 declarator->SetRange({startLoc, endLoc});
1381 lexer::SourcePosition startLoc = lexer_->GetToken().Start();
1383 ir::VariableDeclarator *declarator = ParseVariableDeclarator(init, startLoc, flags);
1397 lexer::SourcePosition startLoc = lexer_->GetToken().Start();
1433 declaration->SetRange({startLoc, endLoc});
1440 lexer::SourcePosition startLoc = lexer_->GetToken().Start();
1459 whileStatement->SetRange({startLoc, endLoc});
1465 ir::ExportDefaultDeclaration *ParserImpl::ParseExportDefaultDeclaration(const lexer::SourcePosition &startLoc,
1515 exportDeclaration->SetRange({startLoc, endLoc});
1540 ir::ExportAllDeclaration *ParserImpl::ParseExportAllDeclaration(const lexer::SourcePosition &startLoc)
1556 exportDeclaration->SetRange({startLoc, endLoc});
1563 ir::ExportNamedDeclaration *ParserImpl::ParseExportNamedSpecifiers(const lexer::SourcePosition &startLoc)
1610 exportDeclaration->SetRange({startLoc, endPos});
1616 ir::ExportNamedDeclaration *ParserImpl::ParseNamedExportDeclaration(const lexer::SourcePosition &startLoc)
1665 exportDeclaration->SetRange({startLoc, endLoc});
1680 lexer::SourcePosition startLoc = lexer_->GetToken().Start();
1685 return ParseExportAllDeclaration(startLoc);
1688 return ParseExportNamedSpecifiers(startLoc);
1692 return ParseExportDefaultDeclaration(startLoc);
1694 return ParseNamedExportDeclaration(startLoc);
1848 lexer::SourcePosition startLoc = lexer_->GetToken().Start();
1864 importDeclaration->SetRange({startLoc, endLoc});