S IAstVisitor <T, S> .VisitParenthesizedExpression(ParenthesizedExpression parenthesizedExpression, T data)
        {
            var handler = ParenthesizedExpressionVisited;

            if (handler != null)
            {
                handler(parenthesizedExpression, data);
            }
            return(VisitChildren(parenthesizedExpression, data));
        }
        protected internal override bool DoMatch(AstNode other, PatternMatching.Match match)
        {
            ParenthesizedExpression o = other as ParenthesizedExpression;

            return(o != null && this.Expression.DoMatch(o.Expression, match));
        }
Beispiel #3
0
 public virtual S VisitParenthesizedExpression(ParenthesizedExpression parenthesizedExpression, T data)
 {
     return(VisitChildren(parenthesizedExpression, data));
 }