|     62 	ExpressionValue*		evaluate(); // Process the expression and yield a result | 
    62 	ExpressionValue*		evaluate(); // Process the expression and yield a result | 
|     63 	ExpressionSymbol*		parseSymbol(); | 
    63 	ExpressionSymbol*		parseSymbol(); | 
|     64 	String					getTokenString(); | 
    64 	String					getTokenString(); | 
|     65 	void					adjustOperators(); | 
    65 	void					adjustOperators(); | 
|     66 	void					verify(); // Ensure the expr is valid | 
    66 	void					verify(); // Ensure the expr is valid | 
|     67 	void					tryVerifyValue (bool* verified, SymbolList::Iterator it); | 
    67 	void					tryVerifyValue (List<bool>& verified, List< ExpressionSymbol*  | 
|         | 
    68 >::Iterator it); | 
|     68 	ExpressionValue*		evaluateOperator (const ExpressionOperator* op, | 
    69 	ExpressionValue*		evaluateOperator (const ExpressionOperator* op, | 
|     69 												const List<ExpressionValue*>& values); | 
    70 												const List<ExpressionValue*>& values); | 
|     70 	SymbolList::Iterator	findPrioritizedOperator(); | 
    71 	SymbolList::Iterator	findPrioritizedOperator(); | 
|     71 }; | 
    72 }; | 
|     72  | 
    73  |