Commit dfd03bbd authored by nikolaos's avatar nikolaos Committed by Commit bot

[parser] Refactor of Parse*Statement*, part 2

This patch moves the following parsing methods to ParserBase:

- ParseBlock

R=adamk@chromium.org, marja@chromium.org
BUG=
LOG=N

Review-Url: https://codereview.chromium.org/2312263002
Cr-Commit-Position: refs/heads/master@{#39251}
parent 371c7a38
......@@ -1169,6 +1169,7 @@ class ParserBase {
bool* ok);
StatementT ParseStatementAsUnlabelled(ZoneList<const AstRawString*>* labels,
bool* ok);
BlockT ParseBlock(ZoneList<const AstRawString*>* labels, bool* ok);
bool IsNextLetKeyword();
bool IsTrivialExpression();
......@@ -4191,6 +4192,36 @@ ParserBase<Impl>::ParseStatementAsUnlabelled(
}
}
template <typename Impl>
typename ParserBase<Impl>::BlockT ParserBase<Impl>::ParseBlock(
ZoneList<const AstRawString*>* labels, bool* ok) {
// Block ::
// '{' StatementList '}'
// Construct block expecting 16 statements.
BlockT body = factory()->NewBlock(labels, 16, false, kNoSourcePosition);
// Parse the statements and collect escaping labels.
Expect(Token::LBRACE, CHECK_OK_CUSTOM(NullBlock));
{
BlockState block_state(&scope_state_);
block_state.set_start_position(scanner()->location().beg_pos);
typename Types::Target target(this, body);
while (peek() != Token::RBRACE) {
StatementT stat = ParseStatementListItem(CHECK_OK_CUSTOM(NullBlock));
if (!impl()->IsNullOrEmptyStatement(stat)) {
body->statements()->Add(stat, zone());
}
}
Expect(Token::RBRACE, CHECK_OK_CUSTOM(NullBlock));
block_state.set_end_position(scanner()->location().end_pos);
body->set_scope(block_state.FinalizedBlockScope());
}
return body;
}
#undef CHECK_OK
#undef CHECK_OK_CUSTOM
......
......@@ -1595,36 +1595,6 @@ Statement* Parser::ParseClassDeclaration(ZoneList<const AstRawString*>* names,
return assignment_statement;
}
Block* Parser::ParseBlock(ZoneList<const AstRawString*>* labels, bool* ok) {
// The harmony mode uses block elements instead of statements.
//
// Block ::
// '{' StatementList '}'
// Construct block expecting 16 statements.
Block* body = factory()->NewBlock(labels, 16, false, kNoSourcePosition);
// Parse the statements and collect escaping labels.
Expect(Token::LBRACE, CHECK_OK);
{
BlockState block_state(&scope_state_);
block_state.set_start_position(scanner()->location().beg_pos);
ParserTarget target(this, body);
while (peek() != Token::RBRACE) {
Statement* stat = ParseStatementListItem(CHECK_OK);
if (stat && !stat->IsEmpty()) {
body->statements()->Add(stat, zone());
}
}
Expect(Token::RBRACE, CHECK_OK);
block_state.set_end_position(scanner()->location().end_pos);
body->set_scope(block_state.FinalizedBlockScope());
}
return body;
}
Block* Parser::BuildInitializationBlock(
DeclarationParsingResult* parsing_result,
ZoneList<const AstRawString*>* names, bool* ok) {
......
......@@ -278,7 +278,6 @@ class Parser : public ParserBase<Parser> {
Statement* ParseClassDeclaration(ZoneList<const AstRawString*>* names,
bool default_export, bool* ok);
Statement* ParseNativeDeclaration(bool* ok);
Block* ParseBlock(ZoneList<const AstRawString*>* labels, bool* ok);
Block* BuildInitializationBlock(DeclarationParsingResult* parsing_result,
ZoneList<const AstRawString*>* names,
bool* ok);
......
......@@ -195,23 +195,6 @@ PreParser::Statement PreParser::ParseClassDeclaration(
return Statement::Default();
}
PreParser::Statement PreParser::ParseBlock(
ZoneList<const AstRawString*>* labels, bool* ok) {
// Block ::
// '{' StatementList '}'
Expect(Token::LBRACE, CHECK_OK);
Statement final = Statement::Default();
{
BlockState block_state(&scope_state_);
while (peek() != Token::RBRACE) {
final = ParseStatementListItem(CHECK_OK);
}
}
Expect(Token::RBRACE, ok);
return final;
}
PreParser::Statement PreParser::ParseVariableStatement(
VariableDeclarationContext var_context,
ZoneList<const AstRawString*>* names, bool* ok) {
......
......@@ -438,6 +438,7 @@ class PreParserStatement {
PreParserStatement* operator->() { return this; }
PreParserStatementList statements() { return PreParserStatementList(); }
void set_scope(Scope* scope) {}
private:
enum Type {
......@@ -777,7 +778,6 @@ class PreParser : public ParserBase<PreParser> {
Expression ParseAsyncFunctionExpression(bool* ok);
Statement ParseClassDeclaration(ZoneList<const AstRawString*>* names,
bool default_export, bool* ok);
Statement ParseBlock(ZoneList<const AstRawString*>* labels, bool* ok);
Statement ParseVariableStatement(VariableDeclarationContext var_context,
ZoneList<const AstRawString*>* names,
bool* ok);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment