本文整理汇总了C#中DestructorDeclaration.AddChild方法的典型用法代码示例。如果您正苦于以下问题:C# DestructorDeclaration.AddChild方法的具体用法?C# DestructorDeclaration.AddChild怎么用?C# DestructorDeclaration.AddChild使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DestructorDeclaration
的用法示例。
在下文中一共展示了DestructorDeclaration.AddChild方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Visit
public override void Visit (Destructor d)
{
DestructorDeclaration newDestructor = new DestructorDeclaration ();
var location = LocationsBag.GetMemberLocation (d);
AddModifiers (newDestructor, location);
if (location != null)
newDestructor.AddChild (new CSharpTokenNode (Convert (location[0]), 1), DestructorDeclaration.TildeRole);
newDestructor.AddChild (new Identifier (d.MemberName.Name, Convert (d.MemberName.Location)), AbstractNode.Roles.Identifier);
if (location != null) {
newDestructor.AddChild (new CSharpTokenNode (Convert (location[1]), 1), DestructorDeclaration.Roles.LPar);
newDestructor.AddChild (new CSharpTokenNode (Convert (location[2]), 1), DestructorDeclaration.Roles.RPar);
}
if (d.Block != null)
newDestructor.AddChild ((INode)d.Block.Accept (this), DestructorDeclaration.Roles.Body);
typeStack.Peek ().AddChild (newDestructor, TypeDeclaration.Roles.Member);
}
示例2: Visit
public override void Visit(Destructor d)
{
var newDestructor = new DestructorDeclaration();
AddAttributeSection(newDestructor, d);
var location = LocationsBag.GetMemberLocation(d);
AddModifiers(newDestructor, location);
if (location != null && location.Count > 0)
newDestructor.AddChild(new CSharpTokenNode(Convert(location [0]), DestructorDeclaration.TildeRole), DestructorDeclaration.TildeRole);
newDestructor.AddChild(Identifier.Create(d.Identifier, Convert(d.MemberName.Location)), Roles.Identifier);
if (location != null && location.Count > 1) {
newDestructor.AddChild(new CSharpTokenNode(Convert(location [1]), Roles.LPar), Roles.LPar);
if (location.Count > 2)
newDestructor.AddChild(new CSharpTokenNode(Convert(location [2]), Roles.RPar), Roles.RPar);
}
if (d.Block != null)
newDestructor.AddChild((BlockStatement)d.Block.Accept(this), Roles.Body);
typeStack.Peek().AddChild(newDestructor, Roles.TypeMemberRole);
}