示例#1
0
 public virtual S VisitGotoCaseStatement(GotoCaseStatement gotoCaseStatement, T data)
 {
     return(VisitChildren(gotoCaseStatement, data));
 }
示例#2
0
        protected internal override bool DoMatch(AstNode other, PatternMatching.Match match)
        {
            GotoCaseStatement o = other as GotoCaseStatement;

            return(o != null && this.LabelExpression.DoMatch(o.LabelExpression, match));
        }
示例#3
0
 void IAstVisitor.VisitGotoCaseStatement(GotoCaseStatement gotoCaseStatement)
 {
     Visit(EnterGotoCaseStatement, LeaveGotoCaseStatement, gotoCaseStatement);
 }
 public virtual S VisitGotoCaseStatement(GotoCaseStatement gotoCaseStatement, T data)
 {
     throw new NotImplementedException();
 }