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

VisitCompoundExpression() protected method

protected VisitCompoundExpression ( BoundCompoundExpression node ) : void
node ShaderTools.Hlsl.Binding.BoundNodes.BoundCompoundExpression
return void
        protected virtual void VisitCompoundExpression(BoundCompoundExpression node)
        {
            VisitExpression(node.Left);
            VisitExpression(node.Right);
        }