ShaderTools.Hlsl.Parser.HlslParser.ParseNumericConstructorInvocationExpression C# (CSharp) Method

ParseNumericConstructorInvocationExpression() private method

private ParseNumericConstructorInvocationExpression ( ) : NumericConstructorInvocationExpressionSyntax
return NumericConstructorInvocationExpressionSyntax
        private NumericConstructorInvocationExpressionSyntax ParseNumericConstructorInvocationExpression()
        {
            var type = ParseType(false);

            return new NumericConstructorInvocationExpressionSyntax((NumericTypeSyntax) type, ParseParenthesizedArgumentList(true));
        }
HlslParser