Lines Matching refs:classifier
604 ExpressionClassifier classifier; in ParseVariableDeclarations() local
605 ParseAssignmentExpression(var_context != kForStatement, &classifier, in ParseVariableDeclarations()
607 ValidateExpression(&classifier, CHECK_OK); in ParseVariableDeclarations()
658 ExpressionClassifier classifier; in ParseExpressionOrLabelledStatement() local
660 expr = ParseStrongInitializationExpression(&classifier, CHECK_OK); in ParseExpressionOrLabelledStatement()
662 expr = ParseStrongSuperCallExpression(&classifier, CHECK_OK); in ParseExpressionOrLabelledStatement()
664 ValidateExpression(&classifier, CHECK_OK); in ParseExpressionOrLabelledStatement()
694 ExpressionClassifier classifier; in ParseExpressionOrLabelledStatement() local
695 Expression expr = ParseExpression(true, &classifier, CHECK_OK); in ParseExpressionOrLabelledStatement()
696 ValidateExpression(&classifier, CHECK_OK); in ParseExpressionOrLabelledStatement()
960 ExpressionClassifier classifier; in ParseForStatement() local
961 Expression lhs = ParseExpression(false, &classifier, CHECK_OK); in ParseForStatement()
972 ValidateAssignmentPattern(&classifier, CHECK_OK); in ParseForStatement()
974 ValidateExpression(&classifier, CHECK_OK); in ParseForStatement()
1222 ExpressionClassifier classifier; in ParseClassLiteral() local
1223 ParseLeftHandSideExpression(&classifier, CHECK_OK); in ParseClassLiteral()
1224 ValidateExpression(&classifier, CHECK_OK); in ParseClassLiteral()
1238 ExpressionClassifier classifier; in ParseClassLiteral() local
1241 &classifier, &name, CHECK_OK); in ParseClassLiteral()
1242 ValidateExpression(&classifier, CHECK_OK); in ParseClassLiteral()
1262 ExpressionClassifier classifier; in ParseV8Intrinsic() local
1263 ParseArguments(&spread_pos, &classifier, ok); in ParseV8Intrinsic()
1264 ValidateExpression(&classifier, CHECK_OK); in ParseV8Intrinsic()