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

VisitNumericConstructorInvocationExpression() protected method

protected VisitNumericConstructorInvocationExpression ( BoundNumericConstructorInvocationExpression node ) : void
node ShaderTools.Hlsl.Binding.BoundNodes.BoundNumericConstructorInvocationExpression
return void
        protected virtual void VisitNumericConstructorInvocationExpression(BoundNumericConstructorInvocationExpression node)
        {
            foreach (var argument in node.Arguments)
                VisitExpression(argument);
        }