2008-12-02 12:01:29 +01:00
|
|
|
// Copyright (c) 2008 Roberto Raggi <roberto.raggi@gmail.com>
|
|
|
|
|
//
|
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
// in the Software without restriction, including without limitation the rights
|
|
|
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
// furnished to do so, subject to the following conditions:
|
|
|
|
|
//
|
|
|
|
|
// The above copyright notice and this permission notice shall be included in
|
|
|
|
|
// all copies or substantial portions of the Software.
|
|
|
|
|
//
|
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
|
// THE SOFTWARE.
|
|
|
|
|
|
|
|
|
|
#ifndef CPLUSPLUS_PARSER_H
|
|
|
|
|
#define CPLUSPLUS_PARSER_H
|
|
|
|
|
|
|
|
|
|
#include "CPlusPlusForwardDeclarations.h"
|
|
|
|
|
#include "ASTfwd.h"
|
|
|
|
|
#include "Token.h"
|
|
|
|
|
#include "TranslationUnit.h"
|
2010-03-18 15:21:07 +01:00
|
|
|
#include "MemoryPool.h"
|
2009-11-16 18:00:20 +01:00
|
|
|
#include <map>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-10-20 11:21:25 +02:00
|
|
|
namespace CPlusPlus {
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
class CPLUSPLUS_EXPORT Parser
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
Parser(TranslationUnit *translationUnit);
|
|
|
|
|
~Parser();
|
|
|
|
|
|
|
|
|
|
bool parseTranslationUnit(TranslationUnitAST *&node);
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
bool parseExpressionList(ExpressionListAST *&node);
|
2010-08-26 10:31:15 +02:00
|
|
|
bool parseAbstractCoreDeclarator(DeclaratorAST *&node, SpecifierListAST *decl_specifier_list);
|
|
|
|
|
bool parseAbstractDeclarator(DeclaratorAST *&node, SpecifierListAST *decl_specifier_list);
|
2008-12-02 12:01:29 +01:00
|
|
|
bool parseEmptyDeclaration(DeclarationAST *&node);
|
|
|
|
|
bool parseAccessDeclaration(DeclarationAST *&node);
|
2010-02-06 11:38:54 +01:00
|
|
|
bool parseQtPropertyDeclaration(DeclarationAST *&node);
|
|
|
|
|
bool parseQtEnumDeclaration(DeclarationAST *&node);
|
|
|
|
|
bool parseQtFlags(DeclarationAST *&node);
|
2010-03-16 17:29:40 +01:00
|
|
|
bool parseQtInterfaces(DeclarationAST *&node);
|
2008-12-02 12:01:29 +01:00
|
|
|
bool parseAdditiveExpression(ExpressionAST *&node);
|
|
|
|
|
bool parseAndExpression(ExpressionAST *&node);
|
|
|
|
|
bool parseAsmDefinition(DeclarationAST *&node);
|
2009-02-05 11:37:51 +01:00
|
|
|
bool parseAsmOperandList();
|
|
|
|
|
bool parseAsmOperand();
|
|
|
|
|
bool parseAsmClobberList();
|
2008-12-02 12:01:29 +01:00
|
|
|
bool parseAssignmentExpression(ExpressionAST *&node);
|
2009-11-10 14:03:40 +01:00
|
|
|
bool parseBaseClause(BaseSpecifierListAST *&node);
|
|
|
|
|
bool parseBaseSpecifier(BaseSpecifierListAST *&node);
|
2008-12-02 12:01:29 +01:00
|
|
|
bool parseBlockDeclaration(DeclarationAST *&node);
|
|
|
|
|
bool parseCppCastExpression(ExpressionAST *&node);
|
|
|
|
|
bool parseCastExpression(ExpressionAST *&node);
|
2009-11-10 16:00:22 +01:00
|
|
|
bool parseClassSpecifier(SpecifierListAST *&node);
|
2008-12-02 12:01:29 +01:00
|
|
|
bool parseCommaExpression(ExpressionAST *&node);
|
|
|
|
|
bool parseCompoundStatement(StatementAST *&node);
|
|
|
|
|
bool parseBreakStatement(StatementAST *&node);
|
|
|
|
|
bool parseContinueStatement(StatementAST *&node);
|
|
|
|
|
bool parseGotoStatement(StatementAST *&node);
|
|
|
|
|
bool parseReturnStatement(StatementAST *&node);
|
|
|
|
|
bool parseCondition(ExpressionAST *&node);
|
|
|
|
|
bool parseConditionalExpression(ExpressionAST *&node);
|
|
|
|
|
bool parseConstantExpression(ExpressionAST *&node);
|
|
|
|
|
bool parseCtorInitializer(CtorInitializerAST *&node);
|
2009-11-10 16:00:22 +01:00
|
|
|
bool parseCvQualifiers(SpecifierListAST *&node);
|
2012-09-17 12:26:49 +02:00
|
|
|
bool parseRefQualifier(unsigned &ref_qualifier);
|
2012-06-25 23:49:17 +04:00
|
|
|
bool parseOverrideFinalQualifiers(SpecifierListAST *&node);
|
2010-08-26 10:31:15 +02:00
|
|
|
bool parseDeclaratorOrAbstractDeclarator(DeclaratorAST *&node, SpecifierListAST *decl_specifier_list);
|
2008-12-02 12:01:29 +01:00
|
|
|
bool parseDeclaration(DeclarationAST *&node);
|
2010-08-26 10:31:15 +02:00
|
|
|
bool parseSimpleDeclaration(DeclarationAST *&node, ClassSpecifierAST *declaringClass = 0);
|
2008-12-02 12:01:29 +01:00
|
|
|
bool parseDeclarationStatement(StatementAST *&node);
|
2010-08-26 12:04:42 +02:00
|
|
|
bool parseCoreDeclarator(DeclaratorAST *&node, SpecifierListAST *decl_specifier_list, ClassSpecifierAST *declaringClass);
|
|
|
|
|
bool parseDeclarator(DeclaratorAST *&node, SpecifierListAST *decl_specifier_list, ClassSpecifierAST *declaringClass = 0);
|
2008-12-02 12:01:29 +01:00
|
|
|
bool parseDeleteExpression(ExpressionAST *&node);
|
|
|
|
|
bool parseDoStatement(StatementAST *&node);
|
2009-11-10 16:00:22 +01:00
|
|
|
bool parseElaboratedTypeSpecifier(SpecifierListAST *&node);
|
|
|
|
|
bool parseEnumSpecifier(SpecifierListAST *&node);
|
2009-11-10 14:11:21 +01:00
|
|
|
bool parseEnumerator(EnumeratorListAST *&node);
|
2008-12-02 12:01:29 +01:00
|
|
|
bool parseEqualityExpression(ExpressionAST *&node);
|
|
|
|
|
bool parseExceptionDeclaration(ExceptionDeclarationAST *&node);
|
|
|
|
|
bool parseExceptionSpecification(ExceptionSpecificationAST *&node);
|
|
|
|
|
bool parseExclusiveOrExpression(ExpressionAST *&node);
|
|
|
|
|
bool parseExpression(ExpressionAST *&node);
|
|
|
|
|
bool parseExpressionOrDeclarationStatement(StatementAST *&node);
|
|
|
|
|
bool parseExpressionStatement(StatementAST *&node);
|
|
|
|
|
bool parseForInitStatement(StatementAST *&node);
|
2009-07-03 09:11:52 +02:00
|
|
|
bool parseForeachStatement(StatementAST *&node);
|
2008-12-02 12:01:29 +01:00
|
|
|
bool parseForStatement(StatementAST *&node);
|
|
|
|
|
bool parseFunctionBody(StatementAST *&node);
|
|
|
|
|
bool parseIfStatement(StatementAST *&node);
|
|
|
|
|
bool parseInclusiveOrExpression(ExpressionAST *&node);
|
2010-08-26 12:04:42 +02:00
|
|
|
bool parseInitDeclarator(DeclaratorAST *&node, SpecifierListAST *decl_specifier_list, ClassSpecifierAST *declaringClass);
|
2008-12-02 12:01:29 +01:00
|
|
|
bool parseInitializerList(ExpressionListAST *&node);
|
2009-05-11 16:34:35 +02:00
|
|
|
bool parseInitializer(ExpressionAST *&node, unsigned *equals_token);
|
2008-12-02 12:01:29 +01:00
|
|
|
bool parseInitializerClause(ExpressionAST *&node);
|
|
|
|
|
bool parseLabeledStatement(StatementAST *&node);
|
|
|
|
|
bool parseLinkageBody(DeclarationAST *&node);
|
|
|
|
|
bool parseLinkageSpecification(DeclarationAST *&node);
|
|
|
|
|
bool parseLogicalAndExpression(ExpressionAST *&node);
|
|
|
|
|
bool parseLogicalOrExpression(ExpressionAST *&node);
|
2009-11-10 14:11:21 +01:00
|
|
|
bool parseMemInitializer(MemInitializerListAST *&node);
|
|
|
|
|
bool parseMemInitializerList(MemInitializerListAST *&node);
|
2010-08-26 10:31:15 +02:00
|
|
|
bool parseMemberSpecification(DeclarationAST *&node, ClassSpecifierAST *declaringClass);
|
2008-12-02 12:01:29 +01:00
|
|
|
bool parseMultiplicativeExpression(ExpressionAST *&node);
|
2010-08-12 12:18:49 +02:00
|
|
|
bool parseTemplateId(NameAST *&node, unsigned template_token = 0);
|
2008-12-02 12:01:29 +01:00
|
|
|
bool parseClassOrNamespaceName(NameAST *&node);
|
2009-01-26 12:58:52 +01:00
|
|
|
bool parseNameId(NameAST *&node);
|
2008-12-02 12:01:29 +01:00
|
|
|
bool parseName(NameAST *&node, bool acceptTemplateId = true);
|
2009-11-10 15:12:04 +01:00
|
|
|
bool parseNestedNameSpecifier(NestedNameSpecifierListAST *&node, bool acceptTemplateId);
|
|
|
|
|
bool parseNestedNameSpecifierOpt(NestedNameSpecifierListAST *&name, bool acceptTemplateId);
|
2012-02-02 13:39:24 +01:00
|
|
|
bool parseStaticAssertDeclaration(DeclarationAST *&node);
|
2008-12-02 12:01:29 +01:00
|
|
|
bool parseNamespace(DeclarationAST *&node);
|
|
|
|
|
bool parseNamespaceAliasDefinition(DeclarationAST *&node);
|
2009-11-10 14:16:39 +01:00
|
|
|
bool parseNewArrayDeclarator(NewArrayDeclaratorListAST *&node);
|
2008-12-02 12:01:29 +01:00
|
|
|
bool parseNewExpression(ExpressionAST *&node);
|
2012-09-19 10:09:55 +02:00
|
|
|
bool parseExpressionListParen(ExpressionAST *&node);
|
2012-09-19 11:26:33 +02:00
|
|
|
bool parseNewInitializer(ExpressionAST *&node);
|
2008-12-02 12:01:29 +01:00
|
|
|
bool parseNewTypeId(NewTypeIdAST *&node);
|
|
|
|
|
bool parseOperator(OperatorAST *&node);
|
|
|
|
|
bool parseConversionFunctionId(NameAST *&node);
|
|
|
|
|
bool parseOperatorFunctionId(NameAST *&node);
|
2010-08-26 15:55:31 +02:00
|
|
|
bool parseParameterDeclaration(ParameterDeclarationAST *&node);
|
2008-12-02 12:01:29 +01:00
|
|
|
bool parseParameterDeclarationClause(ParameterDeclarationClauseAST *&node);
|
2010-08-26 15:55:31 +02:00
|
|
|
bool parseParameterDeclarationList(ParameterDeclarationListAST *&node);
|
2008-12-02 12:01:29 +01:00
|
|
|
bool parsePmExpression(ExpressionAST *&node);
|
|
|
|
|
bool parseTypeidExpression(ExpressionAST *&node);
|
|
|
|
|
bool parseTypenameCallExpression(ExpressionAST *&node);
|
|
|
|
|
bool parseCorePostfixExpression(ExpressionAST *&node);
|
|
|
|
|
bool parsePostfixExpression(ExpressionAST *&node);
|
|
|
|
|
bool parsePostfixExpressionInternal(ExpressionAST *&node);
|
|
|
|
|
bool parsePrimaryExpression(ExpressionAST *&node);
|
|
|
|
|
bool parseNestedExpression(ExpressionAST *&node);
|
2009-11-10 15:30:16 +01:00
|
|
|
bool parsePtrOperator(PtrOperatorListAST *&node);
|
2008-12-02 12:01:29 +01:00
|
|
|
bool parseRelationalExpression(ExpressionAST *&node);
|
|
|
|
|
bool parseShiftExpression(ExpressionAST *&node);
|
|
|
|
|
bool parseStatement(StatementAST *&node);
|
|
|
|
|
bool parseThisExpression(ExpressionAST *&node);
|
|
|
|
|
bool parseBoolLiteral(ExpressionAST *&node);
|
|
|
|
|
bool parseNumericLiteral(ExpressionAST *&node);
|
2011-11-18 13:33:26 +01:00
|
|
|
bool parsePointerLiteral(ExpressionAST *&node);
|
2008-12-02 12:01:29 +01:00
|
|
|
bool parseStringLiteral(ExpressionAST *&node);
|
|
|
|
|
bool parseSwitchStatement(StatementAST *&node);
|
|
|
|
|
bool parseTemplateArgument(ExpressionAST *&node);
|
2010-08-11 15:02:08 +02:00
|
|
|
bool parseTemplateArgumentList(ExpressionListAST *&node);
|
2008-12-02 12:01:29 +01:00
|
|
|
bool parseTemplateDeclaration(DeclarationAST *&node);
|
|
|
|
|
bool parseTemplateParameter(DeclarationAST *&node);
|
2009-06-17 16:08:01 +02:00
|
|
|
bool parseTemplateParameterList(DeclarationListAST *&node);
|
2008-12-02 12:01:29 +01:00
|
|
|
bool parseThrowExpression(ExpressionAST *&node);
|
2013-04-03 23:33:44 +04:00
|
|
|
bool parseTryBlockStatement(StatementAST *&node, CtorInitializerAST **placeholder);
|
2009-11-10 15:15:51 +01:00
|
|
|
bool parseCatchClause(CatchClauseListAST *&node);
|
2008-12-02 12:01:29 +01:00
|
|
|
bool parseTypeId(ExpressionAST *&node);
|
|
|
|
|
bool parseTypeIdList(ExpressionListAST *&node);
|
|
|
|
|
bool parseTypenameTypeParameter(DeclarationAST *&node);
|
|
|
|
|
bool parseTemplateTypeParameter(DeclarationAST *&node);
|
|
|
|
|
bool parseTypeParameter(DeclarationAST *&node);
|
|
|
|
|
|
2009-11-10 16:00:22 +01:00
|
|
|
bool parseBuiltinTypeSpecifier(SpecifierListAST *&node);
|
|
|
|
|
bool parseAttributeSpecifier(SpecifierListAST *&node);
|
2009-11-10 14:56:37 +01:00
|
|
|
bool parseAttributeList(AttributeListAST *&node);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-11-10 16:00:22 +01:00
|
|
|
bool parseSimpleTypeSpecifier(SpecifierListAST *&node)
|
2008-12-02 12:01:29 +01:00
|
|
|
{ return parseDeclSpecifierSeq(node, true, true); }
|
|
|
|
|
|
2009-11-10 16:00:22 +01:00
|
|
|
bool parseTypeSpecifier(SpecifierListAST *&node)
|
2008-12-02 12:01:29 +01:00
|
|
|
{ return parseDeclSpecifierSeq(node, true); }
|
|
|
|
|
|
2009-11-10 16:00:22 +01:00
|
|
|
bool parseDeclSpecifierSeq(SpecifierListAST *&node,
|
2008-12-02 12:01:29 +01:00
|
|
|
bool onlyTypeSpecifiers = false,
|
|
|
|
|
bool simplified = false);
|
|
|
|
|
bool parseUnaryExpression(ExpressionAST *&node);
|
|
|
|
|
bool parseUnqualifiedName(NameAST *&node, bool acceptTemplateId = true);
|
|
|
|
|
bool parseUsing(DeclarationAST *&node);
|
|
|
|
|
bool parseUsingDirective(DeclarationAST *&node);
|
2012-09-18 10:45:10 +02:00
|
|
|
bool parseAliasDeclaration(DeclarationAST *&node);
|
2008-12-02 12:01:29 +01:00
|
|
|
bool parseWhileStatement(StatementAST *&node);
|
|
|
|
|
|
2010-01-28 15:21:57 +01:00
|
|
|
void parseExpressionWithOperatorPrecedence(ExpressionAST *&lhs, int minPrecedence);
|
|
|
|
|
|
2009-01-12 14:55:33 +01:00
|
|
|
// Qt MOC run
|
|
|
|
|
bool parseQtMethod(ExpressionAST *&node);
|
|
|
|
|
|
2010-03-24 12:54:25 +01:00
|
|
|
// C++0x
|
2010-03-25 12:15:38 +01:00
|
|
|
bool parseInitializer0x(ExpressionAST *&node, unsigned *equals_token);
|
|
|
|
|
bool parseBraceOrEqualInitializer0x(ExpressionAST *&node);
|
|
|
|
|
bool parseInitializerClause0x(ExpressionAST *&node);
|
|
|
|
|
bool parseInitializerList0x(ExpressionListAST *&node);
|
|
|
|
|
bool parseBracedInitList0x(ExpressionAST *&node);
|
|
|
|
|
|
2010-03-24 12:54:25 +01:00
|
|
|
bool parseLambdaExpression(ExpressionAST *&node);
|
|
|
|
|
bool parseLambdaIntroducer(LambdaIntroducerAST *&node);
|
|
|
|
|
bool parseLambdaCapture(LambdaCaptureAST *&node);
|
|
|
|
|
bool parseLambdaDeclarator(LambdaDeclaratorAST *&node);
|
|
|
|
|
bool parseCapture(CaptureAST *&node);
|
|
|
|
|
bool parseCaptureList(CaptureListAST *&node);
|
|
|
|
|
bool parseTrailingReturnType(TrailingReturnTypeAST *&node);
|
|
|
|
|
bool parseTrailingTypeSpecifierSeq(SpecifierListAST *&node);
|
|
|
|
|
|
2009-01-08 11:47:38 +01:00
|
|
|
// ObjC++
|
2009-02-03 14:26:35 +01:00
|
|
|
bool parseObjCExpression(ExpressionAST *&node);
|
2009-08-05 17:14:08 +02:00
|
|
|
bool parseObjCClassForwardDeclaration(DeclarationAST *&node);
|
2009-01-12 14:55:33 +01:00
|
|
|
bool parseObjCInterface(DeclarationAST *&node,
|
2009-11-10 16:00:22 +01:00
|
|
|
SpecifierListAST *attributes = 0);
|
2009-01-12 14:55:33 +01:00
|
|
|
bool parseObjCProtocol(DeclarationAST *&node,
|
2009-11-10 16:00:22 +01:00
|
|
|
SpecifierListAST *attributes = 0);
|
2009-01-08 11:47:38 +01:00
|
|
|
|
2013-07-18 10:04:28 +02:00
|
|
|
bool parseObjCTryStatement(StatementAST *&node);
|
2009-07-31 16:53:05 +02:00
|
|
|
bool parseObjCSynchronizedStatement(StatementAST *&node);
|
2013-07-18 10:25:19 +02:00
|
|
|
bool parseObjCThrowStatement(StatementAST *&node);
|
2009-02-03 14:29:30 +01:00
|
|
|
bool parseObjCEncodeExpression(ExpressionAST *&node);
|
2009-02-03 14:33:25 +01:00
|
|
|
bool parseObjCProtocolExpression(ExpressionAST *&node);
|
2009-02-03 14:42:45 +01:00
|
|
|
bool parseObjCSelectorExpression(ExpressionAST *&node);
|
|
|
|
|
bool parseObjCStringLiteral(ExpressionAST *&node);
|
2009-02-03 18:47:29 +01:00
|
|
|
bool parseObjCMessageExpression(ExpressionAST *&node);
|
2009-07-15 12:11:07 +02:00
|
|
|
bool parseObjCMessageReceiver(ExpressionAST *&node);
|
2009-07-31 16:03:48 +02:00
|
|
|
bool parseObjCMessageArguments(ObjCSelectorAST *&selNode, ObjCMessageArgumentListAST *& argNode);
|
|
|
|
|
bool parseObjCSelectorArg(ObjCSelectorArgumentAST *&selNode, ObjCMessageArgumentAST *&argNode);
|
2009-07-20 10:04:44 +02:00
|
|
|
bool parseObjCMethodDefinitionList(DeclarationListAST *&node);
|
|
|
|
|
bool parseObjCMethodDefinition(DeclarationAST *&node);
|
2009-02-03 14:29:30 +01:00
|
|
|
|
2009-07-13 09:45:28 +02:00
|
|
|
bool parseObjCProtocolRefs(ObjCProtocolRefsAST *&node);
|
2009-07-16 14:31:13 +02:00
|
|
|
bool parseObjClassInstanceVariables(ObjCInstanceVariablesDeclarationAST *&node);
|
2009-07-16 15:50:42 +02:00
|
|
|
bool parseObjCInterfaceMemberDeclaration(DeclarationAST *&node);
|
2009-01-12 14:55:33 +01:00
|
|
|
bool parseObjCInstanceVariableDeclaration(DeclarationAST *&node);
|
|
|
|
|
bool parseObjCPropertyDeclaration(DeclarationAST *&node,
|
2009-11-10 16:00:22 +01:00
|
|
|
SpecifierListAST *attributes = 0);
|
2009-01-12 15:20:24 +01:00
|
|
|
bool parseObjCImplementation(DeclarationAST *&node);
|
2009-07-20 11:46:59 +02:00
|
|
|
bool parseObjCMethodPrototype(ObjCMethodPrototypeAST *&node);
|
2009-07-28 16:34:15 +02:00
|
|
|
bool parseObjCPropertyAttribute(ObjCPropertyAttributeAST *&node);
|
2009-07-16 12:44:47 +02:00
|
|
|
bool parseObjCTypeName(ObjCTypeNameAST *&node);
|
2009-07-16 11:27:45 +02:00
|
|
|
bool parseObjCSelector(unsigned &selector_token);
|
2009-07-28 16:34:15 +02:00
|
|
|
bool parseObjCKeywordDeclaration(ObjCSelectorArgumentAST *&argument, ObjCMessageArgumentDeclarationAST *&node);
|
2009-07-16 12:44:47 +02:00
|
|
|
bool parseObjCTypeQualifiers(unsigned &type_qualifier);
|
2009-07-29 10:39:27 +02:00
|
|
|
bool peekAtObjCContextKeyword(int kind);
|
2009-07-20 11:46:59 +02:00
|
|
|
bool parseObjCContextKeyword(int kind, unsigned &in_token);
|
2009-01-09 16:55:25 +01:00
|
|
|
|
|
|
|
|
bool lookAtObjCSelector() const;
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
bool skipUntil(int token);
|
2009-12-03 12:19:50 +01:00
|
|
|
void skipUntilDeclaration();
|
2008-12-02 12:01:29 +01:00
|
|
|
bool skipUntilStatement();
|
|
|
|
|
bool skip(int l, int r);
|
2012-09-18 10:45:10 +02:00
|
|
|
int find(int token, int stopAt);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2012-09-18 12:57:51 +02:00
|
|
|
bool lookAtTypeParameter();
|
2008-12-02 12:01:29 +01:00
|
|
|
bool lookAtCVQualifier() const;
|
|
|
|
|
bool lookAtFunctionSpecifier() const;
|
|
|
|
|
bool lookAtStorageClassSpecifier() const;
|
|
|
|
|
bool lookAtBuiltinTypeSpecifier() const;
|
|
|
|
|
bool lookAtClassKey() const;
|
|
|
|
|
|
2010-08-26 10:31:15 +02:00
|
|
|
const Identifier *className(ClassSpecifierAST *ast) const;
|
|
|
|
|
const Identifier *identifier(NameAST *name) const;
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
void match(int kind, unsigned *token);
|
|
|
|
|
|
2010-08-26 10:31:15 +02:00
|
|
|
bool maybeAmbiguousStatement(DeclarationStatementAST *ast, StatementAST *&node);
|
2009-11-10 16:00:22 +01:00
|
|
|
bool maybeForwardOrClassDeclaration(SpecifierListAST *decl_specifier_seq) const;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2010-02-06 11:05:43 +01:00
|
|
|
int peekAtQtContextKeyword() const;
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
bool switchTemplateArguments(bool templateArguments);
|
2012-09-18 12:57:51 +02:00
|
|
|
bool maybeSplitGreaterGreaterToken(int n = 1);
|
2010-08-10 17:53:32 +02:00
|
|
|
|
2013-04-16 15:38:59 +02:00
|
|
|
bool blockErrors(bool block) { return _translationUnit->blockErrors(block); }
|
2010-08-10 17:53:32 +02:00
|
|
|
void warning(unsigned index, const char *format, ...);
|
|
|
|
|
void error(unsigned index, const char *format, ...);
|
|
|
|
|
void fatal(unsigned index, const char *format, ...);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-01-08 18:05:33 +01:00
|
|
|
inline const Token &tok(int i = 1) const
|
|
|
|
|
{ return _translationUnit->tokenAt(_tokenIndex + i - 1); }
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
inline int LA(int n = 1) const
|
|
|
|
|
{ return _translationUnit->tokenKind(_tokenIndex + n - 1); }
|
|
|
|
|
|
|
|
|
|
inline int consumeToken()
|
|
|
|
|
{ return _tokenIndex++; }
|
|
|
|
|
|
|
|
|
|
inline unsigned cursor() const
|
|
|
|
|
{ return _tokenIndex; }
|
|
|
|
|
|
2010-05-31 16:00:59 +02:00
|
|
|
void rewind(unsigned cursor);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-10-23 11:21:36 +02:00
|
|
|
struct TemplateArgumentListEntry {
|
|
|
|
|
unsigned index;
|
|
|
|
|
unsigned cursor;
|
2010-08-11 15:02:08 +02:00
|
|
|
ExpressionListAST *ast;
|
2009-10-23 11:21:36 +02:00
|
|
|
|
2010-08-11 15:02:08 +02:00
|
|
|
TemplateArgumentListEntry(unsigned index = 0, unsigned cursor = 0, ExpressionListAST *ast = 0)
|
2009-10-23 11:21:36 +02:00
|
|
|
: index(index), cursor(cursor), ast(ast) {}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
TemplateArgumentListEntry *templateArgumentListEntry(unsigned tokenIndex);
|
2010-03-18 15:21:07 +01:00
|
|
|
void clearTemplateArgumentList() { _templateArgumentList.clear(); }
|
2009-10-23 11:21:36 +02:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
private:
|
|
|
|
|
TranslationUnit *_translationUnit;
|
|
|
|
|
Control *_control;
|
|
|
|
|
MemoryPool *_pool;
|
2013-10-06 02:41:22 +02:00
|
|
|
LanguageFeatures _languageFeatures;
|
2008-12-02 12:01:29 +01:00
|
|
|
unsigned _tokenIndex;
|
|
|
|
|
bool _templateArguments: 1;
|
|
|
|
|
bool _inFunctionBody: 1;
|
2009-01-09 16:55:25 +01:00
|
|
|
bool _inObjCImplementationContext: 1;
|
2010-03-23 10:17:51 +01:00
|
|
|
bool _inExpressionStatement: 1;
|
2010-01-28 15:21:57 +01:00
|
|
|
int _expressionDepth;
|
2011-10-17 10:24:39 +02:00
|
|
|
int _statementDepth;
|
2010-01-22 16:06:41 +01:00
|
|
|
|
2010-03-23 10:17:51 +01:00
|
|
|
MemoryPool _expressionStatementTempPool;
|
2009-11-16 18:00:20 +01:00
|
|
|
std::map<unsigned, TemplateArgumentListEntry> _templateArgumentList;
|
2009-10-23 11:21:36 +02:00
|
|
|
|
2009-10-22 16:46:26 +02:00
|
|
|
class Rewind;
|
|
|
|
|
friend class Rewind;
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
private:
|
|
|
|
|
Parser(const Parser& source);
|
|
|
|
|
void operator =(const Parser& source);
|
|
|
|
|
};
|
|
|
|
|
|
2011-02-04 09:52:39 +01:00
|
|
|
} // namespace CPlusPlus
|
2009-10-20 11:21:25 +02:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
#endif // CPLUSPLUS_PARSER_H
|