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


C# DestructorDeclaration.Annotation方法代码示例

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


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

示例1: VisitDestructorDeclaration

		public virtual void VisitDestructorDeclaration(DestructorDeclaration destructorDeclaration)
		{
			StartNode(destructorDeclaration);
			var builder = destructorDeclaration.Annotation<MethodDebugInfoBuilder>();
			if (builder != null)
				builder.StartPosition = writer.GetLocation();
			WriteAttributes(destructorDeclaration.Attributes);
			WriteModifiers(destructorDeclaration.ModifierTokens);
			var oldRef = currentMethodReference;
			currentMethodReference = new object();

			// Writer doesn't write the comment before destructorDeclaration if nothing has been printed yet.
			// The following code works with our added comments.
			if (destructorDeclaration.Attributes.Count == 0 && !destructorDeclaration.ModifierTokens.Any()) {
				int count = 0;
				foreach (var child in destructorDeclaration.Children) {
					if (count-- <= 0) {
						cancellationToken.ThrowIfCancellationRequested();
						count = CANCEL_CHECK_LOOP_COUNT;
					}
					var cmt = child as Comment;
					if (cmt == null)
						break;
					cmt.AcceptVisitor(this);
				}
			}

			WriteToken(DestructorDeclaration.TildeRole, BoxedTextColor.Operator);
			TypeDeclaration type = destructorDeclaration.Parent as TypeDeclaration;
			var method = destructorDeclaration.Annotation<dnlib.DotNet.MethodDef>();
			var textToken = method == null ? BoxedTextColor.Type : CSharpMetadataTextColorProvider.Instance.GetColor(method.DeclaringType);
			if (type != null && type.Name != destructorDeclaration.Name)
				WriteIdentifier((Identifier)type.NameToken.Clone(), textToken);
			else
				WriteIdentifier(destructorDeclaration.NameToken, textToken);
			Space(policy.SpaceBeforeConstructorDeclarationParentheses);
			var braceHelper = BraceHelper.LeftParen(this, CodeBracesRangeFlags.Parentheses);
			braceHelper.RightParen();
			WriteMethodBody(destructorDeclaration.Body);
			if (builder != null)
				builder.EndPosition = writer.GetLocation();
			currentMethodReference = oldRef;
			EndNode(destructorDeclaration);
		}
开发者ID:0xd4d,项目名称:NRefactory,代码行数:44,代码来源:CSharpOutputVisitor.cs

示例2: VisitDestructorDeclaration

		public virtual void VisitDestructorDeclaration(DestructorDeclaration destructorDeclaration)
		{
			StartNode(destructorDeclaration);
			WriteAttributes(destructorDeclaration.Attributes);
			WriteModifiers(destructorDeclaration.ModifierTokens);

			// Writer doesn't write the comment before destructorDeclaration if nothing has been printed yet.
			// The following code works with our added comments.
			if (destructorDeclaration.Attributes.Count == 0 && !destructorDeclaration.ModifierTokens.Any()) {
				int count = 0;
				foreach (var child in destructorDeclaration.Children) {
					if (count-- <= 0) {
						cancellationToken.ThrowIfCancellationRequested();
						count = CANCEL_CHECK_LOOP_COUNT;
					}
					var cmt = child as Comment;
					if (cmt == null)
						break;
					cmt.AcceptVisitor(this);
				}
			}

			WriteToken(DestructorDeclaration.TildeRole);
			TypeDeclaration type = destructorDeclaration.Parent as TypeDeclaration;
			var method = destructorDeclaration.Annotation<dnlib.DotNet.MethodDef>();
			var textToken = method == null ? TextTokenType.Type : TextTokenHelper.GetTextTokenType(method.DeclaringType);
			if (type != null && type.Name != destructorDeclaration.Name)
				WriteIdentifier((Identifier)type.NameToken.Clone(), textToken);
			else
				WriteIdentifier(destructorDeclaration.NameToken, textToken);
			Space(policy.SpaceBeforeConstructorDeclarationParentheses);
			LPar();
			RPar();
			WriteMethodBody(destructorDeclaration.Body);
			EndNode(destructorDeclaration);
		}
开发者ID:JackWangCUMT,项目名称:NRefactory,代码行数:36,代码来源:CSharpOutputVisitor.cs


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