Home
last modified time | relevance | path

Searched refs:CHECK_OK (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/parsing/
Dpreparser.cc308 #define CHECK_OK ok); \ macro
403 Statement statement = ParseFunctionDeclaration(CHECK_OK); in ParseSubStatement()
443 Expect(Token::FUNCTION, CHECK_OK); in ParseFunctionDeclaration()
448 &is_strict_reserved, CHECK_OK); in ParseFunctionDeclaration()
456 CHECK_OK); in ParseFunctionDeclaration()
462 Expect(Token::CLASS, CHECK_OK); in ParseClassDeclaration()
472 ParseIdentifierOrStrictReservedWord(&is_strict_reserved, CHECK_OK); in ParseClassDeclaration()
474 CHECK_OK); in ParseClassDeclaration()
483 Expect(Token::LBRACE, CHECK_OK); in ParseBlock()
486 final = ParseStatementListItem(CHECK_OK); in ParseBlock()
[all …]
Dparser.cc301 #define CHECK_OK ok); \ macro
1146 Statement* stat = ParseStatementListItem(CHECK_OK); in ParseStatementList()
1327 Statement* stat = ParseModuleItem(CHECK_OK); in ParseModuleItemList()
1357 Expect(Token::STRING, CHECK_OK); in ParseModuleSpecifier()
1379 Expect(Token::LBRACE, CHECK_OK); in ParseExportClause()
1389 const AstRawString* local_name = ParseIdentifierName(CHECK_OK); in ParseExportClause()
1392 export_name = ParseIdentifierName(CHECK_OK); in ParseExportClause()
1401 Expect(Token::COMMA, CHECK_OK); in ParseExportClause()
1404 Expect(Token::RBRACE, CHECK_OK); in ParseExportClause()
1424 Expect(Token::LBRACE, CHECK_OK); in ParseNamedImports()
[all …]
Dparser-base.h1214 #define CHECK_OK ok); \ macro
1283 IdentifierT name = ParseAndClassifyIdentifier(classifier, CHECK_OK); in ParsePrimaryExpression()
1347 this->ParseAssignmentExpression(true, classifier, CHECK_OK); in ParsePrimaryExpression()
1354 Expect(Token::RPAREN, CHECK_OK); in ParsePrimaryExpression()
1361 classifier, CHECK_OK); in ParsePrimaryExpression()
1362 Expect(Token::RPAREN, CHECK_OK); in ParsePrimaryExpression()
1383 CHECK_OK); in ParsePrimaryExpression()
1427 ExpressionT result = ParseExpression(accept_IN, &classifier, CHECK_OK); in ParseExpression()
1428 result = Traits::RewriteNonPattern(result, &classifier, CHECK_OK); in ParseExpression()
1449 accept_IN, flags, &binding_classifier, CHECK_OK); in ParseExpression()
[all …]