Ejemplo n.º 1
0
        protected internal override bool DoMatch(AstNode other, PatternMatching.Match match)
        {
            ReturnStatement o = other as ReturnStatement;

            return(o != null && this.Expression.DoMatch(o.Expression, match));
        }