S IAstVisitor <T, S> .VisitTypeOfExpression(TypeOfExpression typeOfExpression, T data)
        {
            var handler = TypeOfExpressionVisited;

            if (handler != null)
            {
                handler(typeOfExpression, data);
            }
            return(VisitChildren(typeOfExpression, data));
        }
Exemple #2
0
        protected internal override bool DoMatch(AstNode other, PatternMatching.Match match)
        {
            TypeOfExpression o = other as TypeOfExpression;

            return(o != null && this.Type.DoMatch(o.Type, match));
        }
Exemple #3
0
 public virtual S VisitTypeOfExpression(TypeOfExpression typeOfExpression, T data)
 {
     return(VisitChildren(typeOfExpression, data));
 }