S IAstVisitor <T, S> .VisitUnsafeStatement(UnsafeStatement unsafeStatement, T data) { var handler = UnsafeStatementVisited; if (handler != null) { handler(unsafeStatement, data); } return(VisitChildren(unsafeStatement, data)); }
protected internal override bool DoMatch(AstNode other, PatternMatching.Match match) { UnsafeStatement o = other as UnsafeStatement; return(o != null && this.Body.DoMatch(o.Body, match)); }
public virtual S VisitUnsafeStatement(UnsafeStatement unsafeStatement, T data) { return(VisitChildren(unsafeStatement, data)); }