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

VisitSwitchLabel() protected method

protected VisitSwitchLabel ( BoundSwitchLabel node ) : void
node ShaderTools.Hlsl.Binding.BoundNodes.BoundSwitchLabel
return void
        protected virtual void VisitSwitchLabel(BoundSwitchLabel node)
        {
            if (node.Expression != null)
                VisitExpression(node.Expression);
        }
    }