/// <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(); }
/// <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(); }
/// <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(); }