Ejemplo n.º 1
0
        S IAstVisitor <T, S> .VisitGotoDefaultStatement(GotoDefaultStatement gotoDefaultStatement, T data)
        {
            var handler = GotoDefaultStatementVisited;

            if (handler != null)
            {
                handler(gotoDefaultStatement, data);
            }
            return(VisitChildren(gotoDefaultStatement, data));
        }
Ejemplo n.º 2
0
 void IAstVisitor.VisitGotoDefaultStatement(GotoDefaultStatement gotoDefaultStatement)
 {
     Visit(EnterGotoDefaultStatement, LeaveGotoDefaultStatement, gotoDefaultStatement);
 }
Ejemplo n.º 3
0
        protected internal override bool DoMatch(AstNode other, PatternMatching.Match match)
        {
            GotoDefaultStatement o = other as GotoDefaultStatement;

            return(o != null);
        }
Ejemplo n.º 4
0
 public virtual S VisitGotoDefaultStatement(GotoDefaultStatement gotoDefaultStatement, T data)
 {
     return(VisitChildren(gotoDefaultStatement, data));
 }
 public virtual S VisitGotoDefaultStatement(GotoDefaultStatement gotoDefaultStatement, T data)
 {
     throw new NotImplementedException();
 }