GetStaticCallable() public method

Provides the ICallable that is statically defined
public GetStaticCallable ( ) : ICallable
return ICallable
        /// <summary>
        ///     Provides the ICallable that is statically defined
        /// </summary>
        public override ICallable GetStaticCallable()
        {
            ICallable retVal = null;

            if (Term != null)
            {
                retVal = base.GetStaticCallable();
            }
            else if (Expression != null)
            {
                retVal = Expression.GetStaticCallable();
            }

            return(retVal);
        }