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


C# AstNode.AddAnnotation方法代码示例

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


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

示例1: AddReplacementAnnotation

		public static void AddReplacementAnnotation(AstNode node, AstNode replacedNode)
		{
			node.AddAnnotation(new ReplacementNodeAnnotation {
				ReplacedNode = replacedNode
			});
		}
开发者ID:FloodProject,项目名称:ICSharpCode.NRefactory,代码行数:6,代码来源:StatementsToInitializerConverter.cs

示例2: StartNode

 public override void StartNode(AstNode node)
 {
     node.AddAnnotation(new StartTrackingInfo { CharacterPosition = this.m_Writer.ToString().Length });
     base.StartNode(node);
 }
开发者ID:TreeSeed,项目名称:Tychaia,代码行数:5,代码来源:TrackingOutputFormatter.cs

示例3: StartNode

		public void StartNode(AstNode node)
		{
			// code mappings
			var ranges = node.Annotation<List<ILRange>>();
			if (ranges != null && ranges.Count > 0) {
				// find the ancestor that has method mapping as annotation
				if (node.Parent != null)
				{
					var n = node.Ancestors.FirstOrDefault(a => a.Annotation<MemberMapping>() != null);
					if (n != null) {
						MemberMapping mapping = n.Annotation<MemberMapping>();

						// add all ranges
						foreach (var range in ranges) {
							mapping.MemberCodeMappings.Add(new SourceCodeMapping {
							                               	ILInstructionOffset = range,
							                               	SourceCodeLine = output.CurrentLine,
							                               	MemberMapping = mapping
							                               });
						}
					}
				}
			}
			
			// definitions of types and their members
			Predicate<AstNode> predicate = n => n is AttributedNode;
			
			if (predicate(node)) {
				var n = node as AttributedNode;
				int c = 0;
				if (n != null)
					c = n.Attributes.Count;
				node.AddAnnotation(Tuple.Create(output.CurrentLine + c, output.CurrentColumn));
			}
			
			nodeStack.Push(node);
		}
开发者ID:itsff,项目名称:ILSpy,代码行数:37,代码来源:TextOutputFormatter.cs

示例4: EndNode

 public override void EndNode(AstNode node)
 {
     base.EndNode(node);
     node.AddAnnotation(new EndTrackingInfo { CharacterPosition = this.m_Writer.ToString().Length });
 }
开发者ID:TreeSeed,项目名称:Tychaia,代码行数:5,代码来源:TrackingOutputFormatter.cs


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