Esempio n. 1
0
        /// <summary>
        /// Provides the element called by this term, if any
        /// </summary>
        /// <param name="context">The context on which the variable must be found</param>
        /// <returns></returns>
        public ICallable getCalled(InterpretationContext context)
        {
            ICallable retVal = null;

            if (Designator != null)
            {
                retVal = Designator.getCalled(context);
            }

            return(retVal);
        }