Exemple #1
0
        public override Expression VisitNumericType([NotNull] RuleEngineParser.NumericTypeContext context)
        {
            var integralTypeContext = context.integralType();

            if (integralTypeContext != null)
            {
                return(VisitIntegralType(integralTypeContext));
            }

            return(VisitFloatingPointType(context.floatingPointType()));
        }