public override void VisitSwitchExpressionSection(SwitchExpressionSection syntax)
 {
     _underlyingVisitor.VisitSwitchExpressionSection(syntax);
 }
Beispiel #2
0
        protected internal override bool DoMatch(AstNode other, PatternMatching.Match match)
        {
            SwitchExpressionSection o = other as SwitchExpressionSection;

            return(o != null && this.Pattern.DoMatch(o.Pattern, match) && this.Body.DoMatch(o.Body, match));
        }
 /// <inheritdoc/>
 public virtual void VisitSwitchExpressionSection(SwitchExpressionSection syntax)
 {
     VisitNode(syntax);
 }