Exemple #1
0
        protected internal override bool DoMatch(AstNode other, Match match)
        {
            AttributeSection o = other as AttributeSection;

            return(o != null && this.AttributeTarget == o.AttributeTarget && this.Attributes.DoMatch(o.Attributes, match));
        }
 public virtual S VisitAttributeSection(AttributeSection attributeSection, T data)
 {
     return(VisitChildren(attributeSection, data));
 }