S IAstVisitor <T, S> .VisitEmptyStatement(EmptyStatement emptyStatement, T data)
        {
            var handler = EmptyStatementVisited;

            if (handler != null)
            {
                handler(emptyStatement, data);
            }
            return(VisitChildren(emptyStatement, data));
        }
Esempio n. 2
0
 public virtual S VisitEmptyStatement(EmptyStatement emptyStatement, T data)
 {
     return(VisitChildren(emptyStatement, data));
 }
Esempio n. 3
0
        protected internal override bool DoMatch(AstNode other, PatternMatching.Match match)
        {
            EmptyStatement o = other as EmptyStatement;

            return(o != null);
        }