当前位置: 首页>>代码示例>>C++>>正文


C++ BaseType::isValid方法代码示例

本文整理汇总了C++中BaseType::isValid方法的典型用法代码示例。如果您正苦于以下问题:C++ BaseType::isValid方法的具体用法?C++ BaseType::isValid怎么用?C++ BaseType::isValid使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在BaseType的用法示例。


在下文中一共展示了BaseType::isValid方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: consumeType

	TypeDeclaration consumeType(TokenVector::const_iterator &token, TokenVector::const_iterator end, bool allowIdentifier, const TokenKindSet &stopTokens)
	{
		IndirectionVector indirections;
		BaseType baseType = consumeBaseType(token, end, allowIdentifier, stopTokens);

		if (!baseType.isValid())
		{
			return TypeDeclaration();
		}

		// Keep going until we run out of tokens or hit a stop token
		while(token != end && (stopTokens.count(token->getKind()) == 0))
		{
			if (token->is(clang::tok::raw_identifier))
			{
				const std::string identifier(identifierString(*token));

				if (identifier == "const")
				{
					// Is this applying to a *
					if (!indirections.empty() && (indirections.back() == Indirection::Pointer))
					{
						// Convert to a const *
						indirections.back() = Indirection::ConstPointer;
					}
					else
					{
						// Unexpected
						return TypeDeclaration();
					}
				}
				else if (allowIdentifier && (++token == end))
				{
					// Trailing identifier
					break;
				}
				else
				{
					// Unexpected
					return TypeDeclaration();
				}
			}
			else if (token->is(clang::tok::amp))
			{
				indirections.push_back(Indirection::Reference);
			}
			else if (token->is(clang::tok::star))
			{
				// Assume non-const, following "const" may modify it
				indirections.push_back(Indirection::Pointer);
			}
			else
			{
				// Something we don't know about
				return TypeDeclaration();
			}
			   
			token++;
		}

		return TypeDeclaration(baseType.isConst, baseType.typeName, indirections);
	}
开发者ID:etaoins,项目名称:qconnectlint,代码行数:62,代码来源:DeclarationParser.cpp


注:本文中的BaseType::isValid方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。