コード例 #1
0
 public virtual S VisitGotoCaseStatement(GotoCaseStatement gotoCaseStatement, T data)
 {
     return(VisitChildren(gotoCaseStatement, data));
 }
コード例 #2
0
ファイル: GotoStatement.cs プロジェクト: wwh1004/NRefactory
        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);
 }
コード例 #4
0
 public virtual S VisitGotoCaseStatement(GotoCaseStatement gotoCaseStatement, T data)
 {
     throw new NotImplementedException();
 }