Ejemplo n.º 1
0
 public virtual S VisitCheckedStatement(CheckedStatement checkedStatement, T data)
 {
     return(VisitChildren(checkedStatement, data));
 }
Ejemplo n.º 2
0
        protected internal override bool DoMatch(AstNode other, PatternMatching.Match match)
        {
            CheckedStatement o = other as CheckedStatement;

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