Searched defs:CHECK_OK (Results 1 - 3 of 3) sorted by relevance
/external/v8/src/parsing/ |
H A D | preparser.cc | 25 // The CHECK_OK macro is a convenient macro to enforce error 38 #define CHECK_OK CHECK_OK_VALUE(Expression::Default()) macro 105 // This indirection is needed so that we can use the CHECK_OK macros. 201 Expect(Token::LPAREN, CHECK_OK); 205 ParseFormalParameterList(&formals, CHECK_OK); 206 Expect(Token::RPAREN, CHECK_OK); 210 formals_end_position, CHECK_OK); 212 Expect(Token::LBRACE, CHECK_OK); 213 ParseStatementList(body, Token::RBRACE, CHECK_OK); 214 Expect(Token::RBRACE, CHECK_OK); 303 #undef CHECK_OK macro [all...] |
H A D | parser-base.h | 87 // The CHECK_OK macro is a convenient macro to enforce error 101 #define CHECK_OK CHECK_OK_CUSTOM(EmptyExpression) macro 1089 // for failure at the call sites. The family of CHECK_OK* macros can 1735 return ParseAsyncFunctionLiteral(CHECK_OK); 1748 IdentifierT name = ParseAndClassifyIdentifier(CHECK_OK); 1794 ExpressionT expr = ParseExpressionCoverGrammar(true, CHECK_OK); 1795 Expect(Token::RPAREN, CHECK_OK); 1808 CHECK_OK); 1847 ExpressionT result = ParseExpressionCoverGrammar(accept_IN, CHECK_OK); 1848 impl()->RewriteNonPattern(CHECK_OK); 3997 pos, CHECK_OK); local 4023 CHECK_OK); local 4351 #undef CHECK_OK macro 4352 #define CHECK_OK macro 5406 #undef CHECK_OK macro [all...] |
H A D | parser.cc | 291 // The CHECK_OK macro is a convenient macro to enforce error 304 #define CHECK_OK CHECK_OK_VALUE(nullptr) macro 1024 ParseImportDeclaration(CHECK_OK); 1057 Expect(Token::STRING, CHECK_OK); 1127 Expect(Token::LBRACE, CHECK_OK); 1131 const AstRawString* import_name = ParseIdentifierName(CHECK_OK); 1138 local_name = ParseIdentifierName(CHECK_OK); 1152 CHECK_OK); 1159 Expect(Token::COMMA, CHECK_OK); 1162 Expect(Token::RBRACE, CHECK_OK); 5451 #undef CHECK_OK macro [all...] |
Completed in 256 milliseconds