S IAstVisitor <T, S> .VisitGotoDefaultStatement(GotoDefaultStatement gotoDefaultStatement, T data) { var handler = GotoDefaultStatementVisited; if (handler != null) { handler(gotoDefaultStatement, data); } return(VisitChildren(gotoDefaultStatement, data)); }
void IAstVisitor.VisitGotoDefaultStatement(GotoDefaultStatement gotoDefaultStatement) { Visit(EnterGotoDefaultStatement, LeaveGotoDefaultStatement, gotoDefaultStatement); }
protected internal override bool DoMatch(AstNode other, PatternMatching.Match match) { GotoDefaultStatement o = other as GotoDefaultStatement; return(o != null); }
public virtual S VisitGotoDefaultStatement(GotoDefaultStatement gotoDefaultStatement, T data) { return(VisitChildren(gotoDefaultStatement, data)); }
public virtual S VisitGotoDefaultStatement(GotoDefaultStatement gotoDefaultStatement, T data) { throw new NotImplementedException(); }