Rosetta.AST.Utilities.MultiPurposeASTWalker.VisitSwitchSection C# (CSharp) 메소드

VisitSwitchSection() 공개 최종 메소드

public final VisitSwitchSection ( SwitchSectionSyntax node ) : void
node SwitchSectionSyntax
리턴 void
        public override sealed void VisitSwitchSection(SwitchSectionSyntax node)
        {
            this.OnNodeVisited(node);
            if (!this.traverseRootOnly) base.VisitSwitchSection(node);
        }
MultiPurposeASTWalker