// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) // This code is distributed under MIT X11 license (for details please see \doc\license.txt) using System; namespace ICSharpCode.NRefactory.VB.Ast { public class AttributeBlock : AstNode { public readonly static Role AttributeBlockRole = new Role("AttributeBlock"); public readonly static Role ReturnTypeAttributeBlockRole = new Role("ReturnTypeAttributeBlock"); public VBTokenNode LChevron { get { return GetChildByRole(Roles.LChevron); } } public AstNodeCollection Attributes { get { return GetChildrenByRole(Attribute.AttributeRole); } } public VBTokenNode RChevron { get { return GetChildByRole(Roles.RChevron); } } protected internal override bool DoMatch(AstNode other, ICSharpCode.NRefactory.PatternMatching.Match match) { var node = other as AttributeBlock; return node != null && Attributes.DoMatch(node.Attributes, match); } public override S AcceptVisitor(IAstVisitor visitor, T data) { return visitor.VisitAttributeBlock(this, data); } } }