ShaderTools.Hlsl.Binding.BoundTreeWalker.VisitSwitchSection C# (CSharp) Method

VisitSwitchSection() protected method

protected VisitSwitchSection ( BoundSwitchSection node ) : void
node ShaderTools.Hlsl.Binding.BoundNodes.BoundSwitchSection
return void
        protected virtual void VisitSwitchSection(BoundSwitchSection node)
        {
            foreach (var label in node.Labels)
                VisitSwitchLabel(label);

            foreach (var statement in node.Statements)
                VisitStatement(statement);
        }