This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* * * * * * * * * * * * * * | |
* A simple expression parser | |
* -------------------------- | |
* | |
* The parser can parse a mathematical expression into a simple custom | |
* expression tree. It can recognise methods and fields/contants which | |
* are user extensible. It can also contain expression parameters which | |
* are registrated automatically. An expression tree can be "converted" | |
* into a delegate. | |
* |