Home
last modified time | relevance | path

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

/external/v8/src/parsing/
Dparser-base.h157 #define CHECK_OK CHECK_OK_CUSTOM(NullExpression) macro
1823 name = ParseIdentifierName(CHECK_OK); in ParseIdentifierNameOrPrivateName()
1896 return ParseAsyncFunctionLiteral(CHECK_OK); in ParsePrimaryExpression()
1909 IdentifierT name = ParseAndClassifyIdentifier(CHECK_OK); in ParsePrimaryExpression()
1957 ExpressionT expr = ParseExpressionCoverGrammar(true, CHECK_OK); in ParsePrimaryExpression()
1958 Expect(Token::RPAREN, CHECK_OK); in ParsePrimaryExpression()
1972 &is_await, CHECK_OK); in ParsePrimaryExpression()
2015 ExpressionT result = ParseExpressionCoverGrammar(accept_IN, CHECK_OK); in ParseExpression()
2016 ValidateExpression(CHECK_OK); in ParseExpression()
2041 ExpressionT pattern = ParsePrimaryExpression(CHECK_OK); in ParseExpressionCoverGrammar()
[all …]
Dpreparser.cc36 #define CHECK_OK CHECK_OK_VALUE(Expression::Default()) macro
309 Expect(Token::LPAREN, CHECK_OK); in ParseFunctionLiteral()
313 ParseFormalParameterList(&formals, CHECK_OK); in ParseFunctionLiteral()
314 Expect(Token::RPAREN, CHECK_OK); in ParseFunctionLiteral()
318 formals_end_position, CHECK_OK); in ParseFunctionLiteral()
320 Expect(Token::LBRACE, CHECK_OK); in ParseFunctionLiteral()
327 CHECK_OK); in ParseFunctionLiteral()
339 function_name_location, CHECK_OK); in ParseFunctionLiteral()
342 ValidateFormalParameters(language_mode, allow_duplicate_parameters, CHECK_OK); in ParseFunctionLiteral()
346 CheckStrictOctalLiteral(start_position, end_position, CHECK_OK); in ParseFunctionLiteral()
[all …]
Dparser.cc147 #define CHECK_OK CHECK_OK_VALUE(nullptr) macro
912 ParseImportDeclaration(CHECK_OK); in ParseModuleItem()
943 Expect(Token::STRING, CHECK_OK); in ParseModuleSpecifier()
964 Expect(Token::LBRACE, CHECK_OK); in ParseExportClause()
975 const AstRawString* local_name = ParseIdentifierName(CHECK_OK); in ParseExportClause()
979 export_name = ParseIdentifierName(CHECK_OK); in ParseExportClause()
989 Expect(Token::COMMA, CHECK_OK); in ParseExportClause()
992 Expect(Token::RBRACE, CHECK_OK); in ParseExportClause()
1011 Expect(Token::LBRACE, CHECK_OK); in ParseNamedImports()
1015 const AstRawString* import_name = ParseIdentifierName(CHECK_OK); in ParseNamedImports()
[all …]