Lines Matching refs:CHECK_OK
1214 #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()
1474 accept_IN, flags, &binding_classifier, CHECK_OK); in ParseExpression()
1500 Expect(Token::LBRACK, CHECK_OK); in ParseArrayLiteral()
1515 this->ParseAssignmentExpression(true, classifier, CHECK_OK); in ParseArrayLiteral()
1538 classifier, CHECK_OK); in ParseArrayLiteral()
1542 Expect(Token::COMMA, CHECK_OK); in ParseArrayLiteral()
1545 Expect(Token::RBRACK, CHECK_OK); in ParseArrayLiteral()
1593 ParseAssignmentExpression(true, &computed_name_classifier, CHECK_OK); in ParsePropertyName()
1595 expression, &computed_name_classifier, CHECK_OK); in ParsePropertyName()
1598 Expect(Token::RBRACK, CHECK_OK); in ParsePropertyName()
1604 *name = ParseIdentifierNameOrGetOrSet(is_get, is_set, CHECK_OK); in ParsePropertyName()
1613 *name = ParseIdentifierNameOrGetOrSet(is_get, is_set, CHECK_OK); in ParsePropertyName()
1844 Expect(Token::LBRACE, CHECK_OK); in ParseObjectLiteral()
1856 classifier, &name, CHECK_OK); in ParseObjectLiteral()
1876 Expect(Token::COMMA, CHECK_OK); in ParseObjectLiteral()
1885 Expect(Token::RBRACE, CHECK_OK); in ParseObjectLiteral()
1995 accept_IN, &arrow_formals_classifier, CHECK_OK); in ParseAssignmentExpression()
1999 parenthesized_formals, CHECK_OK); in ParseAssignmentExpression()
2018 &duplicate_loc, CHECK_OK); in ParseAssignmentExpression()
2024 accept_IN, parameters, arrow_formals_classifier, CHECK_OK); in ParseAssignmentExpression()
2069 ValidateAssignmentPattern(classifier, CHECK_OK); in ParseAssignmentExpression()
2082 MessageTemplate::kInvalidLhsInAssignment, CHECK_OK); in ParseAssignmentExpression()
2098 this->ParseAssignmentExpression(accept_IN, &rhs_classifier, CHECK_OK); in ParseAssignmentExpression()
2099 right = Traits::RewriteNonPattern(right, &rhs_classifier, CHECK_OK); in ParseAssignmentExpression()
2157 Expect(Token::YIELD, CHECK_OK); in ParseYieldExpression()
2181 expression = ParseAssignmentExpression(false, classifier, CHECK_OK); in ParseYieldExpression()
2183 Traits::RewriteNonPattern(expression, classifier, CHECK_OK); in ParseYieldExpression()
2214 this->ParseBinaryExpression(4, accept_IN, classifier, CHECK_OK); in ParseConditionalExpression()
2216 expression = Traits::RewriteNonPattern(expression, classifier, CHECK_OK); in ParseConditionalExpression()
2223 ExpressionT left = ParseAssignmentExpression(true, classifier, CHECK_OK); in ParseConditionalExpression()
2224 left = Traits::RewriteNonPattern(left, classifier, CHECK_OK); in ParseConditionalExpression()
2225 Expect(Token::COLON, CHECK_OK); in ParseConditionalExpression()
2227 ParseAssignmentExpression(accept_IN, classifier, CHECK_OK); in ParseConditionalExpression()
2228 right = Traits::RewriteNonPattern(right, classifier, CHECK_OK); in ParseConditionalExpression()
2240 ExpressionT x = this->ParseUnaryExpression(classifier, CHECK_OK); in ParseBinaryExpression()
2244 x = Traits::RewriteNonPattern(x, classifier, CHECK_OK); in ParseBinaryExpression()
2251 ParseBinaryExpression(prec1 + 1, accept_IN, classifier, CHECK_OK); in ParseBinaryExpression()
2252 y = Traits::RewriteNonPattern(y, classifier, CHECK_OK); in ParseBinaryExpression()
2314 ExpressionT expression = ParseUnaryExpression(classifier, CHECK_OK); in ParseUnaryExpression()
2315 expression = Traits::RewriteNonPattern(expression, classifier, CHECK_OK); in ParseUnaryExpression()
2337 ExpressionT expression = this->ParseUnaryExpression(classifier, CHECK_OK); in ParseUnaryExpression()
2340 MessageTemplate::kInvalidLhsInPrefixOp, CHECK_OK); in ParseUnaryExpression()
2342 expression = Traits::RewriteNonPattern(expression, classifier, CHECK_OK); in ParseUnaryExpression()
2364 this->ParseLeftHandSideExpression(classifier, CHECK_OK); in ParsePostfixExpression()
2372 MessageTemplate::kInvalidLhsInPostfixOp, CHECK_OK); in ParsePostfixExpression()
2374 expression = Traits::RewriteNonPattern(expression, classifier, CHECK_OK); in ParsePostfixExpression()
2395 this->ParseMemberWithNewPrefixesExpression(classifier, CHECK_OK); in ParseLeftHandSideExpression()
2404 ExpressionT index = ParseExpression(true, classifier, CHECK_OK); in ParseLeftHandSideExpression()
2405 index = Traits::RewriteNonPattern(index, classifier, CHECK_OK); in ParseLeftHandSideExpression()
2407 Expect(Token::RBRACK, CHECK_OK); in ParseLeftHandSideExpression()
2412 result = Traits::RewriteNonPattern(result, classifier, CHECK_OK); in ParseLeftHandSideExpression()
2444 ParseArguments(&spread_pos, classifier, CHECK_OK); in ParseLeftHandSideExpression()
2480 IdentifierT name = ParseIdentifierName(CHECK_OK); in ParseLeftHandSideExpression()
2491 result = ParseTemplateLiteral(result, position(), classifier, CHECK_OK); in ParseLeftHandSideExpression()
2534 result = ParseSuperExpression(is_new, classifier, CHECK_OK); in ParseMemberWithNewPrefixesExpression()
2536 return ParseNewTargetExpression(CHECK_OK); in ParseMemberWithNewPrefixesExpression()
2538 result = this->ParseMemberWithNewPrefixesExpression(classifier, CHECK_OK); in ParseMemberWithNewPrefixesExpression()
2540 result = Traits::RewriteNonPattern(result, classifier, CHECK_OK); in ParseMemberWithNewPrefixesExpression()
2545 this->ParseArguments(&spread_pos, classifier, CHECK_OK); in ParseMemberWithNewPrefixesExpression()
2555 this->ParseMemberExpressionContinuation(result, classifier, CHECK_OK); in ParseMemberWithNewPrefixesExpression()
2595 is_generator, &is_strict_reserved_name, CHECK_OK); in ParseMemberExpression()
2606 language_mode(), CHECK_OK); in ParseMemberExpression()
2609 result = ParseSuperExpression(is_new, classifier, CHECK_OK); in ParseMemberExpression()
2611 result = ParsePrimaryExpression(classifier, CHECK_OK); in ParseMemberExpression()
2614 result = ParseMemberExpressionContinuation(result, classifier, CHECK_OK); in ParseMemberExpression()
2639 ExpressionT index = this->ParseExpression(true, classifier, CHECK_OK); in ParseStrongInitializationExpression()
2640 index = Traits::RewriteNonPattern(index, classifier, CHECK_OK); in ParseStrongInitializationExpression()
2645 Expect(Token::RBRACK, CHECK_OK); in ParseStrongInitializationExpression()
2651 IdentifierT name = ParseIdentifierName(CHECK_OK); in ParseStrongInitializationExpression()
2675 this->ParseAssignmentExpression(true, classifier, CHECK_OK); in ParseStrongInitializationExpression()
2676 right = Traits::RewriteNonPattern(right, classifier, CHECK_OK); in ParseStrongInitializationExpression()
2722 ParseArguments(&spread_pos, classifier, CHECK_OK); in ParseStrongSuperCallExpression()
2766 Expect(Token::SUPER, CHECK_OK); in ParseSuperExpression()
2805 ExpectContextualKeyword(CStrVector("target"), CHECK_OK); in ParseNewTargetExpression()
2832 ExpressionT index = this->ParseExpression(true, classifier, CHECK_OK); in ParseMemberExpressionContinuation()
2833 index = Traits::RewriteNonPattern(index, classifier, CHECK_OK); in ParseMemberExpressionContinuation()
2838 Expect(Token::RBRACK, CHECK_OK); in ParseMemberExpressionContinuation()
2847 IdentifierT name = ParseIdentifierName(CHECK_OK); in ParseMemberExpressionContinuation()
2871 ParseTemplateLiteral(expression, pos, classifier, CHECK_OK); in ParseMemberExpressionContinuation()
3058 Expect(Token::ARROW, CHECK_OK); in ParseArrowFunctionLiteral()
3068 &expected_property_count, CHECK_OK); in ParseArrowFunctionLiteral()
3076 kArrowFunction, FunctionLiteral::kAnonymousExpression, CHECK_OK); in ParseArrowFunctionLiteral()
3087 ParseAssignmentExpression(accept_IN, &classifier, CHECK_OK); in ParseArrowFunctionLiteral()
3088 expression = Traits::RewriteNonPattern(expression, &classifier, CHECK_OK); in ParseArrowFunctionLiteral()
3090 this->AddParameterInitializationBlock(formal_parameters, body, CHECK_OK); in ParseArrowFunctionLiteral()
3105 allow_duplicate_parameters, CHECK_OK); in ParseArrowFunctionLiteral()
3110 scanner()->location().end_pos, CHECK_OK); in ParseArrowFunctionLiteral()
3113 this->CheckConflictingVarDeclarations(formal_parameters.scope, CHECK_OK); in ParseArrowFunctionLiteral()
3160 CheckTemplateOctalLiteral(pos, peek_position(), CHECK_OK); in ParseTemplateLiteral()
3177 CheckTemplateOctalLiteral(pos, peek_position(), CHECK_OK); in ParseTemplateLiteral()
3193 ExpressionT expression = this->ParseExpression(true, classifier, CHECK_OK); in ParseTemplateLiteral()
3194 expression = Traits::RewriteNonPattern(expression, classifier, CHECK_OK); in ParseTemplateLiteral()
3227 CheckTemplateOctalLiteral(pos, peek_position(), CHECK_OK); in ParseTemplateLiteral()
3321 #undef CHECK_OK