예제 #1
0
        /// <summary>
        /// Kicks off the process to tokenize the function and compile the resulting token set into a runnable form.
        /// </summary>
        public void Compile()
        {
            var parser = new Parser(_equation);

            _tokenEnumerator = parser.GetTokenEnumerator();

            NextToken();

            _function = Or();
        }
예제 #2
0
        /// <summary>
        /// Compile():  This function kicks off the process to tokenize the function
        ///		and compile the resulting token set into a runnable form.
        /// </summary>
        public void Compile()
        {
            Parser oParser = new Parser(m_sEquation);

            m_enumTokens = oParser.GetTokenEnumerator();

            PositionNextToken();

            m_Function = Relational();
        }
예제 #3
0
        /// <summary>
        /// Compile():  This function kicks off the process to tokenize the function
        ///		and compile the resulting token set into a runnable form.
        /// </summary>
        public void Compile()
        {
            Parser oParser = new Parser(m_sEquation );
            m_enumTokens = oParser.GetTokenEnumerator();

            PositionNextToken();

            m_Function = Relational();
        }