예제 #1
0
        protected internal override bool DoMatch(AstNode other, PatternMatching.Match match)
        {
            Accessor o = other as Accessor;

            return(o != null && !o.IsNull && this.MatchAttributesAndModifiers(o, match) && this.Body.DoMatch(o.Body, match));
        }