S IAstVisitor <T, S> .VisitUnsafeStatement(UnsafeStatement unsafeStatement, T data)
        {
            var handler = UnsafeStatementVisited;

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

            return(o != null && this.Body.DoMatch(o.Body, match));
        }
Beispiel #3
0
 public virtual S VisitUnsafeStatement(UnsafeStatement unsafeStatement, T data)
 {
     return(VisitChildren(unsafeStatement, data));
 }