Rosetta.AST.Utilities.MultiPurposeASTWalker.VisitCaseSwitchLabel C# (CSharp) Method

VisitCaseSwitchLabel() public final method

public final VisitCaseSwitchLabel ( CaseSwitchLabelSyntax node ) : void
node CaseSwitchLabelSyntax
return void
        public override sealed void VisitCaseSwitchLabel(CaseSwitchLabelSyntax node)
        {
            this.OnNodeVisited(node);
            if (!this.traverseRootOnly) base.VisitCaseSwitchLabel(node);
        }
MultiPurposeASTWalker